VB查询数据库出错。。
--------------------编程问答-------------------- 时间查询,建议你使用BETWEEN语句http://download.csdn.net/detail/veron_04/1644211
--------------------编程问答-------------------- select * from info where 车辆号 like '%1%' and 时间 between #2012-3-23 00:00:00# and #2012-3-23 23:59:59#
--------------------编程问答-------------------- ACCESS数据库使用这种语法:and 时间 >= #2012-3-23 11:43:48#
SQL SERVER使用的语法:and 时间 >= '2012-3-23 11:43:48'
ORACLE 使用的语法:and 时间 >= to_date('2012-3-23 11:43:48','yyyy-mm-dd hh24:mi:ss')
--------------------编程问答-------------------- --------------------编程问答--------------------
补充:VB , 基础类