SqlCeResultSet.IsSetAsDefault 方法
判斷指定序數位置的欄位是否已標記為使用基礎預設值。
命名空間: System.Data.SqlServerCe
組件: System.Data.SqlServerCe (在 System.Data.SqlServerCe.dll 中)
語法
'宣告
Public Function IsSetAsDefault ( _
ordinal As Integer _
) As Boolean
'用途
Dim instance As SqlCeResultSet
Dim ordinal As Integer
Dim returnValue As Boolean
returnValue = instance.IsSetAsDefault(ordinal)
public bool IsSetAsDefault(
int ordinal
)
public:
bool IsSetAsDefault(
int ordinal
)
member IsSetAsDefault :
ordinal:int -> bool
public function IsSetAsDefault(
ordinal : int
) : boolean
參數
- ordinal
型別:System.Int32
要擷取值的來源資料行之序數位置。
傳回值
型別:System.Boolean
如果指定的欄位已標記為要使用基礎預設值則為 true,否則為 false。
備註
這個函式將針對新建構之資料錄中任何未修改的資料行傳回 true,或者針對藉由呼叫 SetDefault 函式而明確標示的資料行傳回 true。
如果指定的索引處沒有任何欄位,就會擲回 IndexOutOfRangeException。