SQLValue.UsualType Property (Typed) | |
A string representing the X# usual type corresponding to the originating ODBC type (for example, SQL_INTEGER returns LONG).
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOSQLClasses (in XSharp.VOSQLClasses.dll) Version: 2.19
Syntax VIRTUAL PROPERTY UsualType AS DWORD GET
public virtual uint UsualType { get; }
Request Example
View SourceProperty Value
Type:
DWordA string representing the X# usual type corresponding to the originating ODBC type (for example, SQL_INTEGER returns LONG).
Remarks
A string representing the X# usual type corresponding to the originating ODBC type (for example, SQL_INTEGER returns LONG).
Possible ODBC types and their return values include:
ODBC Type | VO Type |
---|
SQL_INTEGER | LONG |
SQL_SMALLINT | SHORTINT |
SQL_FLOAT | FLOAT |
SQL_REAL | FLOAT |
SQL_DOUBLE | FLOAT |
SQL_BIT | LOGIC |
SQL_DATE | DATE |
All other values | STRING |
Tip |
---|
Refer to your ODBC documentation for a complete list of ODBC usual types that are available for that particular driver. |
See Also