Talk Arcades: Forum for Arcade Webmasters    

  Talk Arcades > Arcades > Webmastering

Welcome to Talk Arcades, the premier forum for arcade webmasters.

You are currently viewing our boards as a guest. By joining our community you will be able to make posts, communicate privately with other arcade webmasters and participate in our Live Marketplace. Registration is easy, so please join us today!

Reply
 
LinkBack Thread Tools Display Modes
Old 10-25-2007, 08:22 PM   #1 (permalink)
RickyG
Moderator
Senior Member
 
RickyG's Avatar
 
Join Date: Dec 2006
Location: Under Your Mouse!
Posts: 1,208
RickyG is on a distinguished road
Send a message via ICQ to RickyG Send a message via AIM to RickyG Send a message via MSN to RickyG Send a message via Yahoo to RickyG


Default Anyone here good at SQL errors?

I have a SQL and I keep getting an error. I dont know the first thing about SQL...

Here is error:
ERROR 1064 (42000) at line 1: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''gId', 'gIncategory', 'gSwFile', 'gName', 'gOrder', 'gVisible', 'gThumb', 'gWidt' at line 1

Here is the first couple of lines of code
INSERT INTO `games` ('gId', 'gIncategory', 'gSwFile', 'gName', 'gOrder', 'gVisible', 'gThumb', 'gWidth', 'gheight', 'gDescription', 'gplays', 'description2', 'desc2', 'filetype', 'score', 'points', 'comments', 'sender') VALUES (1,101,'f-218.swf','12 Holes of X-Mas',0,1,'f-218.png',525,400,"'Pick your putter and go out to putt a hole in one.Move the ball to where you want it then click,move your mouse according to the arrow then click to shoot the ball, and play all twelve holes'",0,'','',1,0,0,'',''),
INSERT INTO `games` ('gId', 'gIncategory', 'gSwFile', 'gName', 'gOrder', 'gVisible', 'gThumb', 'gWidth', 'gheight', 'gDescription', 'gplays', 'description2', 'desc2', 'filetype', 'score', 'points', 'comments', 'sender') VALUES (2,101,'1221.swf','12 Many',0,1,'1221.png',480,360,'The screen flashes quickly and it ask you how many stars you seen. Can get quite challenging.',0,'','',1,0,0,'',''),
INSERT INTO `games` ('gId', 'gIncategory', 'gSwFile', 'gName', 'gOrder', 'gVisible', 'gThumb', 'gWidth', 'gheight', 'gDescription', 'gplays', 'description2', 'desc2', 'filetype', 'score', 'points', 'comments', 'sender') VALUES (3,101,'2343.swf','2D Army Swat',0,1,'2343.png',610,465,"'Shoot the drunk terrorists, but watch out for them shooting back.'",0,'','',1,0,0,'',''),


ANY IDEAS???????
__________________

Arcade Banner Exchange, game packs, top site, arcade script and forum for all of your arcade needs http://www.mibbi.com
This site stinks!! www.farting.us

Coming soon MibbiJr!
RickyG is online now  
Digg this Post!
Reply With Quote
Old 10-25-2007, 09:03 PM   #2 (permalink)
ArcadeSiteBuilder
Senior Member
 
Join Date: Oct 2007
Posts: 215
ArcadeSiteBuilder is on a distinguished road
Send a message via MSN to ArcadeSiteBuilder


Default

Rickyg,

it looks like the sql you are using isn't lined up with database you are trying to insert it into. I will be glad to help you. grab my on MSN I will send you pm.
__________________

ArcadeSiteBuilder is online now  
Digg this Post!
Reply With Quote
Old 10-25-2007, 09:39 PM   #3 (permalink)
brendgard
Gamer FX Staff
Senior Member
 
brendgard's Avatar
 
Join Date: Oct 2006
Posts: 681
brendgard is on a distinguished road


Default

Just a quick glance suggests a couple things.

1) most SQL databases want the queries terminated with a semicolon ( ; ) not a comma ( , ). Yours are terminated by a comma.

2) It's a bit had to read on my screen, but it looks like you have your single and double quotes swapped around for the gDescription field in both the 1st and 3rd insert query. The rest of the time the time the fields are contained in single quotes. Those 2 particulare places the double quotes are outside the singles( " ' description text ' " instead of ' " description text ' " ), and the database probably would choke on that.



Try this way


INSERT INTO `games` ('gId', 'gIncategory', 'gSwFile', 'gName', 'gOrder', 'gVisible', 'gThumb', 'gWidth', 'gheight', 'gDescription', 'gplays', 'description2', 'desc2', 'filetype', 'score', 'points', 'comments', 'sender') VALUES (1,101,'f-218.swf','12 Holes of X-Mas',0,1,'f-218.png',525,400,'Pick your putter and go out to putt a hole in one.Move the ball to where you want it then click,move your mouse according to the arrow then click to shoot the ball, and play all twelve holes',0,'','',1,0,0,'','');
INSERT INTO `games` ('gId', 'gIncategory', 'gSwFile', 'gName', 'gOrder', 'gVisible', 'gThumb', 'gWidth', 'gheight', 'gDescription', 'gplays', 'description2', 'desc2', 'filetype', 'score', 'points', 'comments', 'sender') VALUES (2,101,'1221.swf','12 Many',0,1,'1221.png',480,360,'The screen flashes quickly and it ask you how many stars you seen. Can get quite challenging.',0,'','',1,0,0,'','');
INSERT INTO `games` ('gId', 'gIncategory', 'gSwFile', 'gName', 'gOrder', 'gVisible', 'gThumb', 'gWidth', 'gheight', 'gDescription', 'gplays', 'description2', 'desc2', 'filetype', 'score', 'points', 'comments', 'sender') VALUES (3,101,'2343.swf','2D Army Swat',0,1,'2343.png',610,465,'Shoot the drunk terrorists, but watch out for them shooting back.',0,'','',1,0,0,'','');
__________________
http://gamersgo.com A list of arcade related sites, add yours.
http://auntiefondy.com Lists, add your site.
http://kbsplace.com
brendgard is offline  
Digg this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Guide to Running a Great Arcade Site. messa Webmastering 7 12-31-2008 05:13 AM


All times are GMT -6. The time now is 10:14 PM.


Powered by vBulletin® Version 3.6.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.0.0 RC6
© TalkArcades.com
Forum - Register - Calendar - Memberlist - FAQ - Search