Welcome Guest, Not a member yet? Register   Sign In
HELP!Error Number: 1064
#2

[eluser]tonanbarbarian[/eluser]
problem is very simple
the field name desc is a reserved word in mysql (and every other database platform for that matter)
so you need to backtick the name

if you are writing the insert query yourself then you need to change it to
Code:
INSERT INTO download (`desc`, url, category, size, `date`) VALUES ...
note you will have to do date as well, might just be safest to do all the field names
If you are using the active record CI methods to build the insert then it should backtick for you automatically


Messages In This Thread
HELP!Error Number: 1064 - by El Forum - 02-06-2008, 04:53 PM
HELP!Error Number: 1064 - by El Forum - 02-06-2008, 05:07 PM
HELP!Error Number: 1064 - by El Forum - 02-06-2008, 05:08 PM
HELP!Error Number: 1064 - by El Forum - 02-06-2008, 05:08 PM



Theme © iAndrew 2016 - Forum software by © MyBB