Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Microsoft JET Database Engine error '80040e14'

Status
Not open for further replies.

daveigh

Programmer
Oct 9, 2003
105
0
0
ok guys, ive visited the ff. faq:

and it seems that it wasnt able to solve my problem.

i get that error with this sql string:
sqlnewuser = "INSERT INTO tblinfo (datereg, timereg, firstname, lastname, birthday, birthmonth, birthyear, gender, sexuality, address, country, zip, email, password, newsletter, enotification, dmg)"
sqlnewuser = sqlnewuser & " VALUES (#"& date &"#,#"& time &"#,'"& firstname &"','"& lastname &"',"& birthday &",'"& birthmonth &"',"& birthyear &",'"& gender &"','"& sexuality &"','"& address &"','"& country &"','"& zip &"','"& email &"','"& password &"',"& newsletter &","& enotification &","& dmg &")"

i tried checking the sql reserved words and i cant find any of them that ive used.

i tried to debug by using response.write and pasting it in the query portion of ms access, and it works.

what could be the problem? any comments?

______________CRYOcoustic_____________
 
If birthmonth is a numeric field rather than string, then don't use the apostrophe delimiters.
Code:
..."& birthday &",[COLOR=red]'[/color red]"& birthmonth &"[COLOR=red]'[/color red],"& birthyear &",'"& gender &"',...

should be:
Code:
,..."& birthday &","& birthmonth &","& birthyear &",'"& gender &"',

________________________________________________________________
If you want to get the best response to a question, please check out FAQ222-2244 first.
'If we're supposed to work in Hex, why have we only got A fingers?'
Drive a Steam Roller
 
thanks sheco. i was able to fix it up.

however, i have this problem..
now this error gives me the shakes.

ive been trying to retrieve a group id w/c is numeric. i was able to pull it out (by response.write) and i am thinking of using it as a reference to another table that contains records of pics. both the tables have a group id column.

but whenever i try to run it, it generates that error. but when i try to debug, i was able to get the group id anyway:

SELECT * FROM photodb WHERE groupid = 1

but when i try to remove the response.end, it shows the error!!!

any feedbacks?

______________CRYOcoustic_____________
 
i dont see pulling records from two tables here...

SELECT * FROM photodb WHERE groupid = 1

you need something like

SELECT * FROM photodb INNER JOIN table2
ON photodb.myID=table2.myID WHERE groupid = 1

-DNG

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top