๐ŸŽ‰ Celebrating 25 Years of GameDev.net! ๐ŸŽ‰

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

i cant create an sql database

Started by
2 comments, last by hplus0603 4ย years, 1ย month ago
Could someone suggest what i should do
Advertisement

I don't think you need a comma after

Marks REAL

๐Ÿ™‚๐Ÿ™‚๐Ÿ™‚๐Ÿ™‚๐Ÿ™‚<โ†The tone posse, ready for action.

The error says that there's a problem in your SQL text near the character โ€˜)โ€™

You only have one character โ€˜)โ€™ in your input SQL text. And, indeed, the error is right before that character!

In general, it's a good idea to have a command-line version of your SQL interpreter available, and paste the code you want to run into that, and see if it works, before you put it into code of some other language. That way, it's easier to tell when you get the SQL wrong, versus when you get the Python/C++/Haskell/whatever wrong.

enum Bool { True, False, FileNotFound };

This topic is closed to new replies.

Advertisement