Datatype Property
この機能は、将来のバージョンの Microsoft SQL Server では削除される予定です。新規の開発作業ではこの機能を使用しないようにし、現在この機能を使用しているアプリケーションは修正することを検討してください。
The Datatype property exposes the data type name for the referenced column.
構文
object
.Datatype [=value]
Parts
- object
An expression that evaluates to an object in the Applies To list
- value
A text string that identifies a Microsoft SQL Server system or user-defined data type
Data Type
String
Modifiable
Read/write before column creation. Read-only when referencing an existing column.
Prototype (C/C++)
HRESULT GetDatatype(SQLDMO_LPBSTR pRetVal);
HRESULT SetDatatype(SQLDMO_LPCSTR NewValue);
メモ : |
---|
SQL Distributed Management Objects (SQL-DMO) strings are always returned as OLE BSTR objects. A C/C++ application obtains a reference to the string. The application must release the reference using SysFreeString. |
解説
The Datatype property may not completely define the data type of a column. Columns requiring width specification, such as varchar, or specification of scale and precision, such as decimal, are defined using the Datatype property in concert with Length, NumericPrecision, and NumericScale properties.
Use the AlterDataType method to change the data type of an existing column.
Applies To:
参照
関連項目
AlterDataType Method
Length Property
NumericPrecision Property
NumericScale Property