Command.Parameters.Add 在MySQL Command 中已過時
Command.Parameters.Add 方法在MySql.Data.SqlClient MySqlClient 中使用的使用是已棄用,並在Visual Studio 中顯示警告。此外,它會導致插入的值包含佔位符而不是預期值。
正確的方法
要解決此問題並執行安全查詢,請按照以下步驟操作:
command.Parameters.AddWithValue("@mcUserName", mcUserNameNew); command.Parameters.AddWithValue("@mcUserPass", mcUserPassNew);
"VALUES ('@mcUserName', '@mcUserPass', '@twUserName', '@twUserPass')"
使用AddWith🎜>
"VALUES (@mcUserName, @mcUserPass, @twUserName, @twUserPass)"
以上是如何修復 MySQL 中過時的 `Command.Parameters.Add` 方法?的詳細內容。更多資訊請關注PHP中文網其他相關文章!