MobiLink Synchronization User's Guide
Writing Synchronization Scripts in .NET
MobiLink .NET API Reference
public enum SQLType
Member of iAnywhere.MobiLink.Script
Enumeration of all possible ODBC data types.
public SQL_TYPE_NULL
Null data type.
public SQL_UNKNOWN_TYPE
Unknown data type.
public SQL_CHAR
UTF-8 character array of a set size. Has .NET type String.
public SQL_NUMERIC
Numeric value of set size and precision. Has .NET type Decimal.
public SQL_DECIMAL
Decimal number of set size and precision. Has .NET type Decimal.
public SQL_INTEGER
32-bit integer. Has .NET type Int32.
public SQL_SMALLINT
16-bit integer. Has .NET type Int16.
public SQL_FLOAT
Floating point number with ODBC driver defined precision. Has .NET type Double.
public SQL_REAL
Single precision floating-point number. Has .NET type Single.
public SQL_DOUBLE
Double precision floating point number. Has .NET type Double.
public SQL_DATE
A date. Has .NET type DateTime.
public SQL_DATETIME
A date and time. Has .NET type DateTime.
public SQL_TIME
A time. Has .NET type DateTime.
public SQL_INTERVAL
An interval of time. Has .NET type TimeSpan.
public SQL_TIMESTAMP
A time stamp. Has .NET type DateTime.
public SQL_VARCHAR
A null terminated UTF-8 string with a user set maximum length. Has .NET type String.
public SQL_TYPE_DATE
A date. Has .NET type DateTime.
public SQL_TYPE_TIME
A time. Has .NET type DateTime.
public SQL_TYPE_TIMESTAMP
A timestamp. Has .NET type DateTime.
public SQL_DEFAULT
A default type. Has no type.
public SQL_ARD_TYPE
An ARD object. Has no type.
public SQL_BIT
A single bit. Has .NET type Boolean.
public SQL_TINYINT
An 8-bit integer. Has .NET type SByte.
public SQL_BIGINT
A 64-bit integer. Has .NET type Int64.
public SQL_LONGVARBINARY
Variable length binary data with a driver dependent maximum length. Has .NET type byte[ ].
public SQL_VARBINARY
Variable length binary data with a user specified maximum length. Has .NET type byte[ ].
public SQL_BINARY
Fixed length binary data. Has .NET type byte[ ].
public SQL_LONGVARCHAR
A null-terminated UTF-8 string with a driver-dependent maximum length. Has .NET type String.
public SQL_GUID
A Global Unique ID (also called a UUID). Has .NET type Guid.
public SQL_WCHAR
Unicode character array of fixed size. Has .NET type String.
public SQL_WVARCHAR
Null-terminated Unicode string of user-defined maximum length. Has .NET type String.
public SQL_WLONGVARCHAR
Null-terminated Unicode string of driver-dependent maximum length. Has .NET type String.