关于时间查询的问题!!
小弟用的是这样的查询。。代码是这样的。
Dim time1 As String = qtime1.Text '起始时间,,时间是可以随便调动的。。
Dim time2 As String = qtime2.Text '终止时间
If Module1.sqlconn.State <> ConnectionState.Open Then
Module1.sqlconn.Open()
End If
sqlCmd.CommandText = "Select * from 销售表 where 时间 between '" & time1 & "' and '" & time2 & "'"
sqlCmd.Connection = Module1.sqlconn
sqlCmd.CommandType = CommandType.Text
sqlDa.SelectCommand = sqlCmd
Try
sqlDa.Fill(Me.ds, "销售表")
Me.DataGrid1.DataSource = ds.Tables("销售表")
Catch ex As Exception
MsgBox("发生错误:" & ex.Message)
End Try
但是查询时跳出这样的问题。。
想请各位大哥帮帮小弟```