Type (Property オブジェクト)
object.Type = value
引数
- object
- Property オブジェクトの名前を指定します。
- value
- データ型を指定します。
解説
Property オブジェクトのデータ型を設定します。
使用例
Set objConn = Server.CreateObject("ADODB.Connection")
Set objRS = Server.CreateObject("ADODB.Recordset")
objConn.Open "sample"
objRS.Open "select * from Table", objConn
Set objProperty = objRS.Properties.Item(0)
Response.Write objProperty.Type
関連項目
Attributes | Property オブジェクト名を指定します。 |
Name | Property オブジェクトの名前を設定します。 |
Value | Property オブジェクトの値を設定します。 |