Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

tinyint in c#

SQL Server data type          CLR data type (SQL Server)    CLR data type (.NET Framework)  
varbinary                     SqlBytes, SqlBinary           Byte[]  
binary                        SqlBytes, SqlBinary           Byte[]  
varbinary(1), binary(1)       SqlBytes, SqlBinary           byte, Byte[] 
image                         None                          None

varchar                       None                          None
char                          None                          None
nvarchar(1), nchar(1)         SqlChars, SqlString           Char, String, Char[]     
nvarchar                      SqlChars, SqlString           String, Char[] 
nchar                         SqlChars, SqlString           String, Char[] 
text                          None                          None
ntext                         None                          None

uniqueidentifier              SqlGuid                       Guid 
rowversion                    None                          Byte[]  
bit                           SqlBoolean                    Boolean 
tinyint                       SqlByte                       Byte 
smallint                      SqlInt16                      Int16  
int                           SqlInt32                      Int32  
bigint                        SqlInt64                      Int64 

smallmoney                    SqlMoney                      Decimal  
money                         SqlMoney                      Decimal  
numeric                       SqlDecimal                    Decimal  
decimal                       SqlDecimal                    Decimal  
real                          SqlSingle                     Single  
float                         SqlDouble                     Double  

smalldatetime                 SqlDateTime                   DateTime  
datetime                      SqlDateTime                   DateTime 

sql_variant                   None                          Object  
User-defined type(UDT)        None                          user-defined type     
table                         None                          None 
cursor                        None                          None
timestamp                     None                          None 
xml                           SqlXml                        None
Comment

tinyint in c#


SQL Server data type          CLR data type (SQL Server)    CLR data type (.NET Framework)  
varbinary                     SqlBytes, SqlBinary           Byte[]  
binary                        SqlBytes, SqlBinary           Byte[]  
varbinary(1), binary(1)       SqlBytes, SqlBinary           byte, Byte[] 
image                         None                          None

varchar                       None                          None
char                          None                          None
nvarchar(1), nchar(1)         SqlChars, SqlString           Char, String, Char[]     
nvarchar                      SqlChars, SqlString           String, Char[] 
nchar                         SqlChars, SqlString           String, Char[] 
text                          None                          None
ntext                         None                          None

uniqueidentifier              SqlGuid                       Guid 
rowversion                    None                          Byte[]  
bit                           SqlBoolean                    Boolean 
tinyint                       SqlByte                       Byte 
smallint                      SqlInt16                      Int16  
int                           SqlInt32                      Int32  
bigint                        SqlInt64                      Int64 

smallmoney                    SqlMoney                      Decimal  
money                         SqlMoney                      Decimal  
numeric                       SqlDecimal                    Decimal  
decimal                       SqlDecimal                    Decimal  
real                          SqlSingle                     Single  
float                         SqlDouble                     Double  

smalldatetime                 SqlDateTime                   DateTime  
datetime                      SqlDateTime                   DateTime 

sql_variant                   None                          Object  
User-defined type(UDT)        None                          user-defined type     
table                         None                          None 
cursor                        None                          None
timestamp                     None                          None 
xml                           SqlXml                        None

Comment

PREVIOUS NEXT
Code Example
Csharp :: c# string array initialization 
Csharp :: asp.net get query string parameter 
Csharp :: difference between while and do while in c# 
Csharp :: create char array c# 
Csharp :: odd or even in c# 
Csharp :: color picker wpf 
Csharp :: how to print c# 
Csharp :: c# groupby date 
Csharp :: memset alternative in c# 
Csharp :: c# shuffle list 
Csharp :: int to ascii c# 
Csharp :: how to get the date of the first day and last day of the week c# 
Csharp :: Find an item in a list by LINQ 
Csharp :: wpf set color in code 
Csharp :: unity c# 
Csharp :: c# get set value 
Csharp :: untiy instanciate prefab 
Csharp :: c# search string array 
Csharp :: parse json array c# 
Csharp :: Open another form with C# Winforms 
Csharp :: forech unity 
Csharp :: write line to file c# 
Csharp :: how to close an application in c# 
Csharp :: c# how to sort a list 
Csharp :: o(n*m) 
Csharp :: No Entity Framework provider found for the ADO.NET provider with invariant name 
Csharp :: when was the third world war 
Csharp :: 2d rotation unity 
Csharp :: c sharp thread lambda 
Csharp :: how to convert date to Complete ISO-8601 date in c# 
ADD CONTENT
Topic
Content
Source link
Name
2+2 =