hi to all
iam using vb6.0
can any one correct me
the query which below mentioned is correct
strSql = "Insert into table1 values (#" & Date & "# ,'2')"
Set rs = objCon.Execute( strSql)
or
the date format has to send like a string
strSql = "Insert into table1 values ('" & de & "' ,'2')"
Set rs = objCon.Execute( strSql)
iam using vb6.0
can any one correct me
the query which below mentioned is correct
strSql = "Insert into table1 values (#" & Date & "# ,'2')"
Set rs = objCon.Execute( strSql)
or
the date format has to send like a string
strSql = "Insert into table1 values ('" & de & "' ,'2')"
Set rs = objCon.Execute( strSql)
Comment