Ok, well this is an easy questions... just takes a careful eye.

Heres the query:
Code:
strSQL = "INSERT INTO tblUser ";
	
	strSQL += "VALUES (\\'" + strGuid + "\\',\\'" + strUser + "\\',\\'" + pHash + "\\',\\'" + strEmail + "\\',\\'"; 
	
	strSQL += strFullname + "\\',\\'" + strAddress + "\\',\\'" + strCity + "\\',\\'" + strCountry + "\\',\\'" + strZip + "\\',\\'" + strPhone + "\\',\\'" + strWPhone;
	
	strSQL += "\\',\\'" + strWPhone + "\\',\\'" + strCPhone + "\\',\\'" + strFax + "\\',\\'" + strActivation + "\\'," + Date() + ") ";
when I try to run this, I get this error
Code:
[Microsoft][ODBC SQL Server Driver][SQL Server]Unclosed quotation mark before the character string '{048DB038-76B8-4139-805A-862BA2710DC3}'.
You might be thinking I have a " somewhere in the input, but I dont... i checked, there is no " or ' anywhere in the input. And if you look, the string "s are fine. What is going on here?