0
質問は、私は彼が私がどんなフィードバックATMを得るカントオフラインカントーだと思う: MySql and inserting last ID problem remains イムいないことを確認イムは完全に盲目が、このコードにある場合:変換答え問題の文字列の問題へのCommandTextこの記事に関連し
// run the insert using a non query call
command.CommandText = cmd.ToString();
command.ExecuteNonQuery();
/* now we want to make a second call to MYSQL to get the new index
value it created for the primary key. This is called using scalar so it will
return the value of the SQL statement. We convert that to an int for later use.*/
command.CommandText = "select last_insert_id();";
id = Convert.ToInt32(command.ExecuteScalar());
//------- the name id does not exist in the current context
// Commit the transaction.
transaction.Commit();
}
catch (Exception ex)
{
Label10.Text = ": " + ex.Message;
try
{
// Attempt to roll back the transaction.
transaction.Rollback();
}
catch
{
// Do nothing here; transaction is not active.
}
}
}
idは何も設定されていません。最後に挿入されたIDに設定しようとしていた方法がわかりません。
EDIT:
int id = Convert.ToInt32(cmd.ExecuteScalar());
Label10.Text = Convert.ToString(id);
omg this w orked私はこれをtryedしかしString.Format duhhで、問題は今返されたもので、私はラベルに設定し、私は返さ0を得る? –
これは、それが格納されていないもので、mysqlはUserテーブルのUserIDであるAIプライマリキーを返しますと言っていますか? –
ああ待っていない最後にselectステートメントを忘れてしまいました。最後に挿入したものを試してみました。もう一度同じエラーが出ます。ジャスティンが正しいかもしれないようです –