Question
VENDORERRORCODE 3092
I dont know why I m getting this error. The query works fine
on my localhost and when i paste the query in access database. It
is a simple insert statement which goes like this:
insert into tblCards(typeID,CardName,Price,Image,listorder,descrip,size) values(#form.typeID#,'#form.cardName#','#form.Price#','#serverfile#',#form.listorder#,'#form.descrip#','#form.size#')
The query output looks like this:
insert into tblCards(typeID,CardName,Price,Image,listorder,descrip,size) values(6,'Maggie Fire','200','maggie_fire.jpg',8,'Add new card by picking appropriate Category and Type for card.','6 X 7')
As I said works great on my localhost but gives me error Syntax error in INSERT INTO statement. VENDORERRORCODE 3092 once uploaded. Doesnt seems like I m using a reserved word.
Thank you
insert into tblCards(typeID,CardName,Price,Image,listorder,descrip,size) values(#form.typeID#,'#form.cardName#','#form.Price#','#serverfile#',#form.listorder#,'#form.descrip#','#form.size#')
The query output looks like this:
insert into tblCards(typeID,CardName,Price,Image,listorder,descrip,size) values(6,'Maggie Fire','200','maggie_fire.jpg',8,'Add new card by picking appropriate Category and Type for card.','6 X 7')
As I said works great on my localhost but gives me error Syntax error in INSERT INTO statement. VENDORERRORCODE 3092 once uploaded. Doesnt seems like I m using a reserved word.
Thank you