See Also
You are here: Interfacing > .NET provider > Scimore::Data::ScimoreClient Namespace > Structs, Records, Enums > ScimoreDbType Enumeration
ContentsIndexHome
PreviousUpNext
Scimore::Data::ScimoreClient::ScimoreDbType Enumeration
C++
public: enum ScimoreDbType {
  TinyInt = 2,
  SmallInt = 2,
  Int = 3,
  BigInt = 32769,
  UniqueIdentifier = 32768,
  Double = 5,
  Float = 4,
  DateTime = 7,
  Char = 8,
  VarChar = 8,
  Text = 32770,
  NChar = 25,
  NVarChar = 25,
  NText = 32772,
  Blob = 32771,
  Guid = 72,
  Null = 1
};
C#
public enum ScimoreDbType {
  TinyInt = 2,
  SmallInt = 2,
  Int = 3,
  BigInt = 32769,
  UniqueIdentifier = 32768,
  Double = 5,
  Float = 4,
  DateTime = 7,
  Char = 8,
  VarChar = 8,
  Text = 32770,
  NChar = 25,
  NVarChar = 25,
  NText = 32772,
  Blob = 32771,
  Guid = 72,
  Null = 1
}
Visual Basic
Public Enum ScimoreDbType
  TinyInt = 2,
  SmallInt = 2,
  Int = 3,
  BigInt = 32769,
  UniqueIdentifier = 32768,
  Double = 5,
  Float = 4,
  DateTime = 7,
  Char = 8,
  VarChar = 8,
  Text = 32770,
  NChar = 25,
  NVarChar = 25,
  NText = 32772,
  Blob = 32771,
  Guid = 72,
  Null = 1
End Enum
File

Common.h

Members
Members 
Description 
TinyInt 
short System::Int16 DbType::Int16 
SmallInt 
short System::Int16 DbType::Int16 
Int 
int System::Int32 DbType::Int32 
BigInt 
int64 System::Int64 DbType::Int64 
UniqueIdentifier 
int64 System::Int64 DbType::Int64 
Double 
double System::Double DbType::Double 
Float 
float System::Double DbType::Double 
DateTime 
double System::DateTime DbType::DateTime 
Char 
char* System::String DbType::String 
VarChar 
char* System::String DbType::String 
Text 
char* System::String DbType::String 
NChar 
wchar_t* System::String DbType::String 
NVarChar 
wchar_t* System::String DbType::String 
NText 
wchar_t* System::String DbType::String 
Blob 
char* System::Byte[] DbType::Binary 
Guid 
char* System::Guid DbType::Guid 
Null 
System::DBNull System::DBNull 
Notes

Probably will be a good idea to assign the Null type with value of 0 (zero).