End-User Documentation

QL0090 Reserved Word Table Name

QL0090 Reserved Word Table Name

The statement references a table name that collides with a reserved word for the active dialect profile.

When It Appears

  • Reserved-word checks run in dialect mode and can differ by dialect family
  • Severity may vary depending on how strongly the target engine treats the reserved word

Example

QueryLens.Dialect = DialectProfile.PostgreSql14;
var query = new SqlQuery("SELECT * FROM user");

Next Steps

  • Rename the object or quote it according to the dialect rules
  • Prefer non-reserved names when possible