You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
442 B

  1. * Some words are prohibited and can't be used is the query in anyways, even in
  2. a select query:
  3. - delete
  4. - drop
  5. - insert
  6. - alter
  7. - truncate
  8. - execute
  9. - create
  10. - update
  11. See sql_request_abstract module to fix this issue.
  12. * checking SQL request by execution and rollback is disabled in this module
  13. since variables features has been introduced. This can be fixed by
  14. overloading _prepare_request_check_execution() function.