oracle - Reserved words in NHibernate -


I need to reference a column called boundary in the legacy Oracle database and for SQLite in- Memory also uses the database. I have read to use the brackets in mapping files to complete it; range which works fine in SQLite, but resolves the "border" in the Oracle and Barf on the query.

Is this feature implemented correctly for Oracle or am I missing something?

Cheers,

Rob

UPDATE

It seems that the column was not made with quotes around it, but NHibernate It recognizes it as a reserve and in Oracle you use double quotation marks in the context of names as reserved words:

"post-text" itemprop = "text" >

:

  SQL & gt; Creating a table (number number); Make a table A (number number) ^ ORA-00904 :: Invalid identifier  

"NUMBER" is a reserved word, however, you can:

  SQL & gt; Create a table ("number" number); Table sql and gt; Choose "number" from one; Number ----------  

Comments