任何人都可以幫助我使用c#在mysql中插入單引號。我知道如何做到這一點,但我不知道語法,到目前爲止,這是我的代碼在mysql中使用c插入引號#
if (txtcode.Text.Contains("'") == true)
{
txtcode.Text.Replace("'", "\'");
}
但我txtcode犯規得到\的價值,也是我嘗試這個代碼
if (txtcode.Text.Contains("'") == true)
{
txtcode.Text.Replace("'", "\\'");
}
仍然沒有工作..任何人都可以猜測如何實現這一目標?在此先感謝
謝謝你救我 – Wielder 2014-10-31 07:50:24