hi, im trying to updaye a access db using a sql update statement......it just wont work...I get an error saying
Microsoft JET Database Engine error '80040e10'
No value given for one or more required parameters.
/modc1.asp, line 50
which points to
im so confused as i am sure that the value are passing through correctly.
plaese help!!!!
Microsoft JET Database Engine error '80040e10'
No value given for one or more required parameters.
/modc1.asp, line 50
which points to
Code:
psql = "UPDATE client SET FirstName='"&FirstName&"', LastName='"&LastName&"', sex ='"&sex&"', Address='"&Address&"', City='"&City&"', Town='"&Town&"', PostalCode='"&PostalCode&"', Region='"&Region&"', HomePhone='"&HomePhone&"', MobilePhone='"&MobilePhone&"', EmailName='"&EmailName&"', ReferedBy='"&ReferedBy&"', Notes='"&Notes&"', SpouseName='"&SpouseName&"', ChildrenNames='"&ChildrenNames&"', DateJoinedday='"&DateJoinedday&"', DateJoinedmon='"&DateJoinedmon&"', DateJoinedyr='"&DateJoinedyr&"', Birthdateday='"&Birthdateday&"', Birthdatemon='"&Birthdatemon&"', Birthdateyr='"&Birthdateyr&"', Ethnicity='"&Ethnicity&"', Disabilitiesflag='"&Disabilitiesflag&"', DisabilitesN='"&DisabilitiesN&"' WHERE ContactID LIKE '"&ContactID&"'"
set recset = server.CreateObject("ADODB.Recordset")
recset.open psql , Conn
im so confused as i am sure that the value are passing through correctly.
plaese help!!!!