这是表的结构( 图书编号
图书类型 图书作者 图书名字 出版社
图书数量 图书价格,出版日期)
列名
数据类型
长度
bookid
int
4
booktype
nvarchar
10
bookauthor
nvarchar
10
bookname
nvarchar
10
publishname
nvarchar
10
bookcount
int
4
bookprice
numeric
9
publishdate
datetime
8
是用向表中插入数据
public void addbook(string BKtype,int BKorder,string BKauthor,string BKname,string BKdate,string BKpublish,int BKcount,float BKprice)
{
SqlConnection con = new SqlConnection("server=.;database=database;uid=sa;pwd=;");
con.Open();
string sql = "insert into 图书信息(booktype,bookid,bookauthor,bookname,publishdate,publishname,bookcount,bookprice) values('" + BKtype + "'," + BKorder + ",'" + BKauthor + "','" + BKname + "','"+BKdate+"','" + BKpublish + "'," + BKcount + "," + BKprice + ")";
SqlCommand cmd= new SqlCommand(sql, con);
cmd.ExecuteNonQuery();
con.Close();
}
表中的日期是日期类型,插入的字段是字符串类型,字符串格式是2008-1-21,我用的是sql server 2000 个人版
程序运行时,提示插入成功,就是日期在表中出错,日期中的年不能超过2000,其他的 月,天都不变,
[[it] 本帖最后由 liyinggui 于 2008-6-22 10:14 编辑 [/it]]
[[it] 本帖最后由 liyinggui 于 2008-6-22 10:16 编辑 [/it]]