Hi!
Can somebody help me on how am I going to insert values in with question mark character chr(63) in fields...
Im using ADO in VB and MySQL
I cannot execute this statement with ADODB command:
strSQL = "insert into TableName (Field1) Values ('?')"
Set cmd = New ADODB.Command
With cmd
.ActiveConnection = conn
.CommandType = adCmdText
.CommandText = strSQL
.Execute , , adCmdText
End With
Thanks...
Can somebody help me on how am I going to insert values in with question mark character chr(63) in fields...
Im using ADO in VB and MySQL
I cannot execute this statement with ADODB command:
strSQL = "insert into TableName (Field1) Values ('?')"
Set cmd = New ADODB.Command
With cmd
.ActiveConnection = conn
.CommandType = adCmdText
.CommandText = strSQL
.Execute , , adCmdText
End With
Thanks...