INSERT ステートメント
新しいレコードを作成するには、INSERT ステートメントを使用します。
INSERT 構文
INSERT ステートメントは、挿入するカラムと新しいカラム値を指定します。複数のカラム値は、次の例に示すように、VALUES 句のカンマ区切りリストで指定できます。
INSERT INTO <table_name>
( <column_reference> [ , ... ] )
VALUES
( { <expression> | NULL } [ , ... ] )
<expression> ::=
| @ <parameter>
| ?
| <literal>
次の例に示すように、ExecuteNonQuery メソッドを使って、データ操作コマンドを実行し影響を受けた行を取得できます。
C#
String connectionString = "InitiateOAuth=GETANDREFRESH;OAuthClientId=MyClientId;OAuthClientSecret=MyClientSecret;CallbackURL=http://localhost;AccountId=MyAccountId;"; using (HighriseConnection connection = new HighriseConnection(connectionString)) { int rowsAffected; HighriseCommand cmd = new HighriseCommand("INSERT INTO People (Firstname) VALUES ('Jane')", connection); rowsAffected = cmd.ExecuteNonQuery(); }
VB.NET
Dim connectionString As [String] = "InitiateOAuth=GETANDREFRESH;OAuthClientId=MyClientId;OAuthClientSecret=MyClientSecret;CallbackURL=http://localhost;AccountId=MyAccountId;" Using connection As New HighriseConnection(connectionString) Dim rowsAffected As Integer Dim cmd As New HighriseCommand("INSERT INTO People (Firstname) VALUES ('Jane')", connection) rowsAffected = cmd.ExecuteNonQuery() End Using