syntax for storing chr(0) in sql server through
vb
i am using the following code... Table test123 contains only one field name "a" whose database type is varchar(50)...
Set conn = New ADODB.Connection
conn.Open "eastman", "sa", "cosl"
sql = "insert into test123 values('" & "'" & Chr(0) & "'" & "')"
Set rs = conn.Execute(sql)
conn.Close
But this is throwing an error..Plz suggest