DB_ERRORMODE
DB_ERRORMODE
Modify default error behavour of class.
Default is db_mysqli::DBOF_SHOW_NO_ERRORS if you omit this parameter.
MYSQLDB_CHARACTERSET
You can set here the character set used when connecting.
This is only performed if this define is set, else no specific character set is set. To get a list of all supported character sets connect to MySQL and issue the following: SHOW CHARACTER SET; The class performs a "SET NAMES 'utf8';" query if you define i.e. 'utf8' as characterset.
MYSQLDB_TIME_NAMES
To have Day and month names returned in a specific locale, define here a valid countrycode.
Note that this is supported since MySQL 5.0.25 (see http://dev.mysql.com/doc/refman/5.0/en/locale-support.html) If you do not define this value, the class does not set any lc_time_names at all. If a define is given the class performs a "SET lc_time_names = 'de_DE';" query to enable german locale.