Hi
I am writing a simple sql statement and saw there are \"\' in the records. How can I handle it?
"Select Title From TblBook where BookID =" & BookID
BookID contains "1223.34sometext"title"andauthor's name"
Here is the actual code:
objRecordset.Open "SELECT [Company Data].[CompanyName] FROM [Company Data] ORDER BY [Company Data].[CompanyName] WHERE [Company Data].[MTCR ID] =" & CHAR(34) & VALUE & CHAR(34), objConnection, adOpenStatic, adLockOptimistic
VALUE IS "2.2.3.44B.THERE ARE SOME TEXT IN "STRING". i DON'T NOW HOW TO"
How do I hand this value with \"\'\.\, character??
Can you help me?
Thank you.
I am writing a simple sql statement and saw there are \"\' in the records. How can I handle it?
"Select Title From TblBook where BookID =" & BookID
BookID contains "1223.34sometext"title"andauthor's name"
Here is the actual code:
objRecordset.Open "SELECT [Company Data].[CompanyName] FROM [Company Data] ORDER BY [Company Data].[CompanyName] WHERE [Company Data].[MTCR ID] =" & CHAR(34) & VALUE & CHAR(34), objConnection, adOpenStatic, adLockOptimistic
VALUE IS "2.2.3.44B.THERE ARE SOME TEXT IN "STRING". i DON'T NOW HOW TO"
How do I hand this value with \"\'\.\, character??
Can you help me?
Thank you.