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!
|