dolibarr 19.0.3
|
Class to manage Dolibarr database access. More...
Public Member Functions | |
prefix () | |
Return the DB prefix found into prefix_db (if it was set manually by doing $dbhandler->prefix_db=...). | |
ifsql ($test, $resok, $resko) | |
Format a SQL IF. | |
hintindex ($nameofindex) | |
Return SQL string to force an index. | |
regexpsql ($subject, $pattern, $sqlstring=0) | |
Format a SQL REGEXP. | |
idate ($param, $gm='tzserver') | |
Convert (by PHP) a GM Timestamp date into a string date with PHP server TZ to insert into a date field. | |
lasterrno () | |
Return last error code. | |
sanitize ($stringtosanitize, $allowsimplequote=0, $allowsequals=0, $allowsspace=0) | |
Sanitize a string for SQL forging. | |
begin ($textinlog='') | |
Start transaction. | |
commit ($log='') | |
Validate a database transaction. | |
rollback ($log='') | |
Cancel a transaction and go back to initial data values. | |
plimit ($limit=0, $offset=0) | |
Define limits and offset of request. | |
getVersionArray () | |
Return version of database server into an array. | |
lastquery () | |
Return last request executed with query() | |
order ($sortfield='', $sortorder='') | |
Define sort criteria of request. | |
lasterror () | |
Return last error label. | |
jdate ($string, $gm='tzserver') | |
Convert (by PHP) a PHP server TZ string date into a Timestamps date (GMT if gm=true) 19700101020000 -> 3600 with server TZ = +1 and $gm='tzserver' 19700101020000 -> 7200 whaterver is server TZ if $gm='gmt'. | |
lastqueryerror () | |
Return last query in error. | |
getRow ($sql) | |
Return first result from query as object Note : This method executes a given SQL query and retrieves the first row of results as an object. | |
getRows ($sql) | |
Return all results from query as an array of objects Note : This method executes a given SQL query and retrieves all row of results as an array of objects. | |
Public Member Functions inherited from Database | |
fetch_row ($resultset) | |
Return datas as an array. | |
idate ($param) | |
Convert (by PHP) a GM Timestamp date into a string date with PHP server TZ to insert into a date field. | |
DDLCreateDb ($database, $charset='', $collation='', $owner='') | |
Create a new database Do not use function xxx_create_db (xxx=mysql, ...) as they are deprecated We force to create database with charset this->forcecharset and collate this->forcecollate. | |
convertSQLFromMysql ($line, $type='ddl') | |
Convert a SQL request in Mysql syntax to native syntax. | |
affected_rows ($resultset) | |
Return the number of lines in the result of a request INSERT, DELETE or UPDATE. | |
error () | |
Return description of last error. | |
DDLListTables ($database, $table='') | |
List tables into a database. | |
DDLListTablesFull ($database, $table='') | |
List tables into a database with table type. | |
decrypt ($value) | |
Decrypt sensitive data in database. | |
fetch_array ($resultset) | |
Return datas as an array. | |
escape ($stringtoencode) | |
Escape a string to insert data. | |
escapeforlike ($stringtoencode) | |
Escape a string to insert data into a like. | |
sanitize ($stringtosanitize) | |
Sanitize a string for SQL forging. | |
last_insert_id ($tab, $fieldid='rowid') | |
Get last ID after an insert INSERT. | |
getPathOfRestore () | |
Return full path of restore program. | |
query ($query, $usesavepoint=0, $type='auto', $result_mode=0) | |
Execute a SQL request and return the resultset. | |
connect ($host, $login, $passwd, $name, $port=0) | |
Connexion to server. | |
getServerParametersValues ($filter='') | |
Return value of server parameters. | |
getServerStatusValues ($filter='') | |
Return value of server status. | |
getDefaultCollationDatabase () | |
Return collation used in database. | |
num_rows ($resultset) | |
Return number of lines for result of a SELECT. | |
getPathOfDump () | |
Return full path of dump program. | |
getDriverInfo () | |
Return version of database client driver. | |
errno () | |
Return generic error code of last operation. | |
DDLCreateTable ($table, $fields, $primary_key, $type, $unique_keys=null, $fulltext_keys=null, $keys=null) | |
Create a table into database. | |
DDLDropTable ($table) | |
Drop a table into database. | |
getListOfCharacterSet () | |
Return list of available charset that can be used to store data in database. | |
DDLAddField ($table, $field_name, $field_desc, $field_position="") | |
Create a new field into table. | |
DDLDropField ($table, $field_name) | |
Drop a field from table. | |
DDLUpdateField ($table, $field_name, $field_desc) | |
Update format of a field into a table. | |
getListOfCollation () | |
Return list of available collation that can be used for database. | |
DDLDescTable ($table, $field="") | |
Return a pointer of line with description of a table or field. | |
getVersion () | |
Return version of database server. | |
getDefaultCharacterSetDatabase () | |
Return charset used to store data in database. | |
DDLCreateUser ( $dolibarr_main_db_host, $dolibarr_main_db_user, $dolibarr_main_db_pass, $dolibarr_main_db_name) | |
Create a user and privileges to connect to database (even if database does not exists yet) | |
encrypt ($fieldorvalue, $withQuotes=1) | |
Encrypt sensitive data in database Warning: This function includes the escape and add the SQL simple quotes on strings. | |
DDLInfoTable ($table) | |
List information of columns into a table. | |
free ($resultset=null) | |
Free last resultset used. | |
close () | |
Close database connexion. | |
DDLGetConnectId () | |
Return connexion ID. | |
fetch_object ($resultset) | |
Returns the current line (as an object) for the resultset cursor. | |
select_db ($database) | |
Select a database. | |
Class to manage Dolibarr database access.
Definition at line 30 of file DoliDB.class.php.
DoliDB::begin | ( | $textinlog = '' | ) |
Start transaction.
string | $textinlog | Add a small text into log. '' by default. |
Implements Database.
Reimplemented in TraceableDB.
Definition at line 176 of file DoliDB.class.php.
References dol_syslog(), and Database\query().
DoliDB::commit | ( | $log = '' | ) |
Validate a database transaction.
string | $log | Add more log to default log line |
Implements Database.
Reimplemented in TraceableDB.
Definition at line 201 of file DoliDB.class.php.
References dol_syslog(), and Database\query().
DoliDB::getRow | ( | $sql | ) |
Return first result from query as object Note : This method executes a given SQL query and retrieves the first row of results as an object.
It should only be used with SELECT queries Dont add LIMIT to your query, it will be added by this method
string | $sql | The sql query string |
Definition at line 376 of file DoliDB.class.php.
References Database\fetch_object(), and Database\query().
DoliDB::getRows | ( | $sql | ) |
Return all results from query as an array of objects Note : This method executes a given SQL query and retrieves all row of results as an array of objects.
It should only be used with SELECT queries be carefull with this method use it only with some limit of results to avoid performences loss.
string | $sql | The sql query string |
Definition at line 402 of file DoliDB.class.php.
References Database\fetch_object(), Database\num_rows(), and Database\query().
DoliDB::getVersionArray | ( | ) |
Return version of database server into an array.
Implements Database.
Reimplemented in TraceableDB.
Definition at line 267 of file DoliDB.class.php.
References Database\getVersion().
DoliDB::hintindex | ( | $nameofindex | ) |
Return SQL string to force an index.
string | $nameofindex | Name of index |
Reimplemented in DoliDBMysqli.
Definition at line 108 of file DoliDB.class.php.
DoliDB::idate | ( | $param, | |
$gm = 'tzserver' ) |
Convert (by PHP) a GM Timestamp date into a string date with PHP server TZ to insert into a date field.
Function to use to build INSERT, UPDATE or WHERE predica
int | $param | Date TMS to convert |
mixed | $gm | 'gmt'=Input informations are GMT values, 'tzserver'=Local to server TZ |
Reimplemented in TraceableDB.
Definition at line 140 of file DoliDB.class.php.
References dol_print_date().
DoliDB::ifsql | ( | $test, | |
$resok, | |||
$resko ) |
Format a SQL IF.
string | $test | Test string (example: 'cd.statut=0', 'field IS NULL') |
string | $resok | resultat si test egal |
string | $resko | resultat si test non egal |
Implements Database.
Reimplemented in DoliDBPgsql, and TraceableDB.
Definition at line 96 of file DoliDB.class.php.
DoliDB::jdate | ( | $string, | |
$gm = 'tzserver' ) |
Convert (by PHP) a PHP server TZ string date into a Timestamps date (GMT if gm=true) 19700101020000 -> 3600 with server TZ = +1 and $gm='tzserver' 19700101020000 -> 7200 whaterver is server TZ if $gm='gmt'.
string | $string | Date in a string (YYYYMMDDHHMMSS, YYYYMMDD, YYYY-MM-DD HH:MM:SS) |
mixed | $gm | 'gmt'=Input informations are GMT values, 'tzserver'=Local to server TZ |
Implements Database.
Reimplemented in TraceableDB.
Definition at line 346 of file DoliDB.class.php.
References dol_mktime().
DoliDB::lasterrno | ( | ) |
Return last error code.
Implements Database.
Reimplemented in TraceableDB.
Definition at line 151 of file DoliDB.class.php.
Referenced by DoliDBMysqli\query(), DoliDBPgsql\query(), and DoliDBSqlite3\query().
DoliDB::lasterror | ( | ) |
Return last error label.
Implements Database.
Reimplemented in TraceableDB.
Definition at line 332 of file DoliDB.class.php.
Referenced by DoliDBPgsql\DDLDropField(), DoliDBMysqli\query(), DoliDBPgsql\query(), and DoliDBSqlite3\query().
DoliDB::lastquery | ( | ) |
Return last request executed with query()
Implements Database.
Reimplemented in TraceableDB.
Definition at line 277 of file DoliDB.class.php.
Referenced by DoliDBMysqli\query(), DoliDBPgsql\query(), and DoliDBSqlite3\query().
DoliDB::lastqueryerror | ( | ) |
Return last query in error.
Implements Database.
Reimplemented in TraceableDB.
Definition at line 363 of file DoliDB.class.php.
Referenced by DoliDBMysqli\query(), DoliDBPgsql\query(), and DoliDBSqlite3\query().
DoliDB::order | ( | $sortfield = '', | |
$sortorder = '' ) |
Define sort criteria of request.
string | $sortfield | List of sort fields, separated by comma. Example: 't1.fielda,t2.fieldb' |
string | $sortorder | Sort order, separated by comma. Example: 'ASC,DESC'. Note: If the quantity fo sortorder values is lower than sortfield, we used the last value for missing values. |
Implements Database.
Reimplemented in TraceableDB.
Definition at line 289 of file DoliDB.class.php.
DoliDB::plimit | ( | $limit = 0, | |
$offset = 0 ) |
Define limits and offset of request.
int | $limit | Maximum number of lines returned (-1=conf->liste_limit, 0=no limit) |
int | $offset | Numero of line from where starting fetch |
Implements Database.
Reimplemented in DoliDBPgsql, and TraceableDB.
Definition at line 246 of file DoliDB.class.php.
DoliDB::prefix | ( | ) |
Return the DB prefix found into prefix_db (if it was set manually by doing $dbhandler->prefix_db=...).
Otherwise return MAIN_DB_PREFIX (common use).
Definition at line 83 of file DoliDB.class.php.
DoliDB::regexpsql | ( | $subject, | |
$pattern, | |||
$sqlstring = 0 ) |
Format a SQL REGEXP.
string | $subject | string tested |
string | $pattern | SQL pattern to match |
int | $sqlstring | whether or not the string being tested is an SQL expression |
Reimplemented in DoliDBPgsql.
Definition at line 122 of file DoliDB.class.php.
DoliDB::rollback | ( | $log = '' | ) |
Cancel a transaction and go back to initial data values.
string | $log | Add more log to default log line |
Implements Database.
Reimplemented in TraceableDB.
Definition at line 225 of file DoliDB.class.php.
References dol_syslog(), and Database\query().
DoliDB::sanitize | ( | $stringtosanitize, | |
$allowsimplequote = 0, | |||
$allowsequals = 0, | |||
$allowsspace = 0 ) |
Sanitize a string for SQL forging.
string | $stringtosanitize | String to escape |
int | $allowsimplequote | 1=Allow simple quotes in string. When string is used as a list of SQL string ('aa', 'bb', ...) |
int | $allowsequals | 1=Allow equals sign |
int | $allowsspace | 1=Allow space char |
Definition at line 165 of file DoliDB.class.php.