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=http://localhost:portNumber"; using (GitHubConnection connection = new GitHubConnection(connectionString)) { int rowsAffected; GitHubCommand cmd = new GitHubCommand("INSERT INTO Repositories (OwnerLogin) VALUES ('3478365783')", connection); rowsAffected = cmd.ExecuteNonQuery(); }
VB.NET
Dim connectionString As [String] = "InitiateOAuth=GETANDREFRESH;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;CallbackURL=http://localhost:portNumber" Using connection As New GitHubConnection(connectionString) Dim rowsAffected As Integer Dim cmd As New GitHubCommand("INSERT INTO Repositories (OwnerLogin) VALUES ('3478365783')", connection) rowsAffected = cmd.ExecuteNonQuery() End Using