private string GetInsertData()
{
string tx = string.Empty;
tx = "insert into books(ISBN,书本名,出版社,出版日期,作者,价格,评论,页数,类别) values(";
if (tbxISBN.Text != "")
tx += "'" + tbxISBN.Text + "'" + ",";
else
tx += "''" + ",";
if (tbxBookName.Text != "")
tx += "'" + tbxBookName.Text + "'" + ",";
else
tx += "''" + ",";
if (tbxPublish.Text != "")
tx += "'" + tbxPublish.Text + "'" + ",";
else
tx += "''" + ",";
if (tbxPDate.Text != "")
tx += "#" + tbxPDate.Text + "#" + ",";
else
tx += "" + ",";
if (tbxAuthor.Text != "")
tx += "'" + tbxAuthor.Text + "'" + ",";
else
tx += "''" + ",";
if (tbxPrice.Text != "")
tx += tbxPrice.Text + ",";
else
tx += "0" + ",";
if (tbxComments.Text != "")
tx += "'" + tbxComments.Text + "'" + ",";
else
tx += "''" + ",";
if (tbxPages.Text != "")
tx += tbxPages.Text + ",";
else
tx += "0" + ",";
tx += cbxCategory.SelectedValue.ToString() + ")";
return tx;
}
其中:
if (tbxPDate.Text != "")
tx += "#" + tbxPDate.Text + "#" + ",";
else
tx += "" + ",";
有问题,应该怎样修改?