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