InstantDB Project
About InstantDB
Project Mail Lists
Short History
Reporting Bugs
Screen Shots
3rd Party Examples
FAQs

Software
Downloads
Documentation
CVS Repositories
Roadmap
License

About Enhydra.org
Who We Are
News, Articles & Events
Getting Involved
Contact Us

Community
Demos
Contributions
Resources
Case Studies
On The Edge! -NEW-
Commercial Vendors


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

InstantDB: Reserved word issue


I am working on a project where I take all the schema and data from a Microsoft SQL Server 7.0 database and export it into InstantDB databases.  I have come across a problem though.  I have a table similar to:

Table Name: Options

Col1=Name
Col2=Text    < this is causing the problem
Col3=Value
Col4=ListPosition
 

So my create statement would look like:

CREATE TABLE Option ( Name CHAR (50), Text CHAR (30), Value CHAR (50), ListPosition int )

I get an error:

Expected: "colName" found: "Text" (reserved word)

I am wondering if there is a way to 'turn off' this error checking (I didn't see Text as a keyword in my SQL 92 book), or will I have to change "Text" to something else?

Thanks.

PS: InstantDB is really a blast to work with!