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.
18 lines
518 B
18 lines
518 B
* Some words are prohibited and can't be used is the query in anyways, even in
|
|
a select query:
|
|
- delete
|
|
- drop
|
|
- insert
|
|
- alter
|
|
- truncate
|
|
- execute
|
|
- create
|
|
- update
|
|
|
|
See sql_request_abstract module to fix this issue.
|
|
|
|
* checking SQL request by execution and rollback is disabled in this module
|
|
since variables features has been introduced. This can be fixed by
|
|
overloading _prepare_request_check_execution() function.
|
|
|
|
* Move modules sql_request_abstract and sql_export to oca/reporting-engine
|