command クラス : AddNull(string)メソッド

説明

パラメータに null を設定します。

構文

instance.AddNull(string name)

引数

クラス名前説明
stringname名前。

返り値

無し。

サンプルコード

1:

connection cnn = new connection("Data Source=c:\somedirectory\somedatabase.sqlite3;Version=3;");

2:

cnn.Open();

3:

command cmm = new command("create table sometable (id int, name text);", cnn);

4:

cmm.NonQuery(); // It creates the "sometable".

5:

cmm.CommandText = "insert into sometable values(@id, @name);";

6:

cmm.Add("@id", 1); // It sets 1 to the "@id".

7:

cmm.AddNull("@name"); // It sets null to the "@name".

8:

cmm.NonQuery(); // Data inserting is done.

9:

cmm.Release();

10:

cnn.Close();

11:

cnn.Release();

注意

無し。

参照リンク

無し。

Copyright © Cooker All rights reserved.