程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> asp-數據庫表的類型為varchar但是只能存入數字類型的字符串

asp-數據庫表的類型為varchar但是只能存入數字類型的字符串

編輯:編程綜合問答
數據庫表的類型為varchar但是只能存入數字類型的字符串

我的客戶表customer字段類型為varchar型的 ,但是我在插入數據時不能插入字母,符號,只能插入數字類型的字符串
比如插入 “lly.sfa”就不行,但是插入“54215642”就可以 。下面是我的代碼
try
{
string username = TextBox1.Text;
string password = TextBox2.Text;
string againpassword = TextBox3.Text.;
string phonenumber = TextBox4.Text.();
Random ran = new Random();

int id = Convert.ToInt32(string.Format("{0:ddHHmmss}", DateTime.Now) + ran.Next(0, 10));
string sqlselete = "select count(*) from customer where customer_name=" + username;
dataOperate sqlopereat = new dataOperate();
int num = sqlopereat.IsData(sqlselete);
if (num == 0)
{
try
{
string sqlupdata = "insert into customer(customer_id,customer_name,customer_password,customer_phone,customer_level) values(" + id+"," + phonenumber+","+username+","+password+","+ "5) ";
//bool a=sqlopereat.Insert(sqlupdata);
//if (a==true)
//{
// Response.Write("恭喜 注冊成功");
//}
bool result = sqlopereat.AdlData(sqlupdata);
if (result == true)
{
Response.Write("恭喜 注冊成功");
}

            }
            catch (Exception)
            {
                throw;

            }

        }

    }
    catch (Exception)
    {
        throw;

    }

}
    數據庫連接沒有問題    我用的是VS2015內置的數據庫    是這個的問題嗎?

最佳回答:


你的sql語句中拼接,字符串類型的變量外面要加上單引號。

a245861672
caozhy
a245861672
caozhy
a245861672
caozhy
a245861672
caozhy
a245861672
caozhy
a245861672
a245861672
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved