数据库查询语句写法有什么格式要求么?
在运行的时候出现错误:实时错误"424":要求对象代码:
Adodc1.RecordSource = "select * from szxx where sz_place = '" + Combo1.Text + "'and sz_tim between #" & DTPicker1.Value & "# and #" & DTPicker2.Value & "#"
应该是sz_place = '" + Combo1.Text + "'and 这句的问题,正确的输入方法是什么?
--------------------编程问答-------------------- 查阅一下这个 --------------------编程问答-------------------- 谢谢,解决了,sz_place = '" + Combo1.Text + "' 加了Trim(Combo1.Text)
补充:VB , VBA