を使用してC#フォームから値を挿入しようとすると、エラーが発生しますOLEDB Connection
。
strSQL = "INSERT INTO test_table (username,password) " +
"VALUES (@user,@pass)";
objCmd = new OleDbCommand(strSQL, objConnection);
objCmd.Parameters.Add("@user", OleDbType.VarChar, 255).Value =TextBox1.Text.Trim();
objCmd.Parameters.Add("@pass", OleDbType.VarChar, 255).Value= TextBox2.Text.Trim();
// execute the command
objCmd.ExecuteNonQuery();
objConnection.Close();
Label1.Text = "Command run";
エラーは
例外の詳細:System.Data.OleDb.OleDbException:コマンドの処理中に1つ以上のエラーが発生しました。ORA-00936:式がありません