|
BeTheBall -> RE: Query Values (6/17/2008 0:10:57)
|
Time may also be a reserved word. Also, if this is an Access db, then you need to use different delimiters on your field. Something like: mySQL = "INSERT INTO results (Person,Reason,Category,[In],Back,[Time]) VALUES ('" mySQL = mySQL & StripQuote(Request.Form("Person")) & "','" & StripQuote(Request.Form("Reason")) & "','" & StripQuote(Request.Form("Category")) & "','" & StripQuote(Request.Form("In")) & "','" & StripQuote(Request.Form("Back")) & "',#" & StripQuote(Request.Form("Time")) & "#)"
|
|
|
|