>백엔드 개발 >C++ >일반적인 SQL Server 데이터 형식에 해당하는 C#은 무엇입니까?

일반적인 SQL Server 데이터 형식에 해당하는 C#은 무엇입니까?

DDD
DDD원래의
2025-01-07 11:23:49491검색

What are the C# Equivalents of Common SQL Server Data Types?

SQL Server 데이터 유형과 동일한 C#

정확한 숫자

SQL Server Data Type C# Data Type (SQL Server) C# Data Type (.NET Framework)
bigint SqlInt64 Int64
numeric SqlDecimal Decimal
bit SqlBoolean Boolean
smallint SqlInt16 Int16
decimal SqlDecimal Decimal
smallmoney SqlMoney Decimal
int SqlInt32 Int32
tinyint SqlByte Byte
money SqlMoney Decimal

근사치 숫자

SQL Server Data Type C# Data Type (SQL Server) C# Data Type (.NET Framework)
float SqlSingle Single
real SqlDouble Double

날짜 및 시간

SQL Server Data Type C# Data Type (SQL Server) C# Data Type (.NET Framework)
date SqlDate None
datetimeoffset SqlDateTimeOffset None
datetime2 SqlDateTime2 None
smalldatetime None DateTime
datetime SqlDateTime DateTime
time SqlTime None

문자열

SQL Server Data Type C# Data Type (SQL Server) C# Data Type (.NET Framework)
char SqlChars, SqlString String, Char[]
varchar None None
text None None

유니코드 문자 문자열

SQL Server Data Type C# Data Type (SQL Server) C# Data Type (.NET Framework)
nchar SqlChars, SqlString String, Char[]
nvarchar SqlChars, SqlString String, Char[]
ntext None None

이진 문자열

SQL Server Data Type C# Data Type (SQL Server) C# Data Type (.NET Framework)
binary SqlBytes, SqlBinary Byte[]
varbinary SqlBytes, SqlBinary Byte[]
image None None

기타 데이터 유형

SQL Server Data Type C# Data Type (SQL Server) C# Data Type (.NET Framework)
cursor None None
timestamp None None
hierarchyid None None
uniqueidentifier SqlGuid Guid
sql_variant None Object
xml SqlXml None
table None None

위 내용은 일반적인 SQL Server 데이터 형식에 해당하는 C#은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.