ホームページ >バックエンド開発 >C++ >一般的な SQL Server データ型に相当する C# は何ですか?

一般的な SQL Server データ型に相当する C# は何ですか?

Susan Sarandon
Susan Sarandonオリジナル
2025-01-07 11:26:42973ブラウズ

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

SQL Server のデータ型と C# での同等のもの

C# には、Microsoft SQL Server で使用されるデータ型に対応するさまざまなデータ型があります。以下の表は、さまざまな SQL Server データ型に相当するものを示しています:

SQL Server Data Type C# Data Type
Exact Numerics
bigint Int64
numeric Decimal
bit Boolean
smallint Int16
decimal Decimal
smallmoney Decimal
int Int32
tinyint Byte
money Decimal
Approximate Numerics
float Double
real Single
Date and Time
date None
datetimeoffset None
datetime2 None
smalldatetime DateTime
datetime DateTime
time None
Character Strings
char None
varchar None
text None
Unicode Character Strings
nchar None
nvarchar None
ntext None
Binary Strings
binary Byte[]
varbinary Byte[]
image None
Other Data Types
cursor None
timestamp None
hierarchyid None
uniqueidentifier Guid
sql_variant Object
xml SqlXml
table None

以上が一般的な SQL Server データ型に相当する C# は何ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。