Method | Description | |
---|---|---|
Get ( DbType typecode ) : string |
Get default type name for specified type
|
|
Get ( DbType typecode, int size, int precision, int scale ) : string |
Get the type name specified type and size
|
|
Put ( DbType typecode, int capacity, string value ) : void |
Set a type name for specified type key and capacity
|
|
Put ( DbType typecode, string value ) : void |
|
Method | Description | |
---|---|---|
Replace ( string type, int size, int precision, int scale ) : string |
public Get ( DbType typecode ) : string | ||
typecode | DbType | the type key |
return | string |
public Get ( DbType typecode, int size, int precision, int scale ) : string | ||
typecode | DbType | the type key |
size | int | the SQL length |
precision | int | the SQL precision |
scale | int | the SQL scale |
return | string |
public Put ( DbType typecode, int capacity, string value ) : void | ||
typecode | DbType | the type key |
capacity | int | the (maximum) type size/length |
value | string | The associated name |
return | void |
public Put ( DbType typecode, string value ) : void | ||
typecode | DbType | |
value | string | |
return | void |