diff options
author | thomascube <thomas@roundcube.net> | 2008-03-19 14:36:47 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-03-19 14:36:47 +0000 |
commit | 9814721e8ddee4e26cc58cd47301e5d741048a22 (patch) | |
tree | 7ae2e67066ba35fe6aa61d1501eefaafc37ee040 /program/include/rcube_db.inc | |
parent | 0714b7e09d9a4f26d76bf5ccbe05c356a961f4a2 (diff) |
Enable SQL logging (set 'sql_debug' config param to true); Switch to emulated prepare mode for better performance
Diffstat (limited to 'program/include/rcube_db.inc')
-rw-r--r-- | program/include/rcube_db.inc | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/program/include/rcube_db.inc b/program/include/rcube_db.inc index 4c3e9fc62..63c6759b9 100644 --- a/program/include/rcube_db.inc +++ b/program/include/rcube_db.inc @@ -153,8 +153,18 @@ class rcube_db $this->db_handle = $this->dsn_connect($dsn); $this->db_connected = $this->db_handle ? TRUE : FALSE; } + + + /** + * Activate/deactivate debug mode + * (not implemented) + */ + function set_debug($dbg = true) + { - + } + + /** * Getter for error state * |