Hello, I would like to find the size of each elements in UniDbType enum.
How many characters are allowed in VarChar, NVarChar objects and what are the objects Clob, Blob and Guid?
Thank you
UniDbType
Each server has its own size limits. We haven't implemented obtaining the type system information. Use minimal size for all the types.
- Clob is Character LOB data type. Represented as CLOB in Oracle, TEXT in SQL Server, MySQL and PostgreSQL. May be represented as UniBlob class or string in the .NET Framework.
- Blob is Binary LOB data type. Represented as IMAGE in SQL Server, BLOB in Oracle and MySQL, BYTEA in PostgreSQL. May be represented as UniBlob class or an array of bytes in the .NET Framework.
- Guid is GUID-like data type. Represented as VARCHAR in Oracle, MySQL and PostgreSQL. In SQL Client this is UNIQUEIDENTIFIER. Corresponds to Guid in the .NET Framework.