主题:一条sql语句的疑问
sxczhhw
[专家分:70] 发布于 2007-01-10 20:22:00
我的contents表结构是:id,title,content,writer.email(id为自动编号,writer和email都设置了默认值)
我想向表中添加记录,用的sql语句是:
insert into contents(title,content) values("& txt1.text &","& txt2.text &")
这样写对不对?
回复列表 (共6个回复)
沙发
ahywg [专家分:70] 发布于 2007-01-11 12:47:00
你用的是什么语言,C#/VB
什么数据库Access/sql/Oracle?
板凳
tangyaham [专家分:0] 发布于 2007-01-11 13:44:00
不对啊,title,content字段和 文本 txt1.text ,txt2.text ,要加单引号
3 楼
longlong16 [专家分:10670] 发布于 2007-01-12 10:59:00
如2楼所说!
你用的应该是vb吧!
4 楼
askjdx [专家分:50] 发布于 2007-01-15 22:18:00
vb中:insert into contents(title,content) values('"& txt1.text &"','"& txt2.text &"')
c#中:insert into contents(title,content) values('"+txt1.text +"','"+ txt2.text +"')
5 楼
阿帅 [专家分:240] 发布于 2007-01-16 23:52:00
没错!
6 楼
sxczhhw [专家分:70] 发布于 2007-01-17 17:42:00
谢谢大家
我来回复