On 2/6/06, Glaucio Scheibel <[EMAIL PROTECTED]> wrote: > I am evaluating ddlutils for my actual project and didn't find this > information. Does ddlutils knows each database reserved words? Ex: in > db2, I can't have a table with name 'order'.
Nope, DdlUtils does not check any names (tables, columns, ...) because this would involve a lot of tedious work. E.g. you cannot stop at reserved words - databases like Oracle or Db2 also create tables themselves whose name you cannot use, and most databases create indices for primary keys and sometimes for foreign keys with special names that you then cannot take either. Tom
