2010-10-24 03:12:37 +04:00
|
|
|
<?php
|
|
|
|
|
2016-09-04 04:19:48 +03:00
|
|
|
require_once('DB.php');
|
2010-10-24 03:12:37 +04:00
|
|
|
|
2016-09-14 04:16:46 +03:00
|
|
|
|
2016-09-04 04:19:48 +03:00
|
|
|
function &getDB($bNew = false, $bPersistent = false)
|
|
|
|
{
|
|
|
|
// Get the database object
|
2016-09-11 06:22:51 +03:00
|
|
|
$oDB = chksql(
|
|
|
|
DB::connect(CONST_Database_DSN.($bNew?'?new_link=true':''), $bPersistent),
|
2017-10-26 22:21:21 +03:00
|
|
|
'Failed to establish database connection'
|
2016-09-11 06:22:51 +03:00
|
|
|
);
|
2016-09-04 04:19:48 +03:00
|
|
|
$oDB->setFetchMode(DB_FETCHMODE_ASSOC);
|
|
|
|
$oDB->query("SET DateStyle TO 'sql,european'");
|
|
|
|
$oDB->query("SET client_encoding TO 'utf-8'");
|
|
|
|
$iMaxExecution = ini_get('max_execution_time') * 1000;
|
|
|
|
if ($iMaxExecution > 0) $oDB->query("SET statement_timeout TO $iMaxExecution");
|
|
|
|
return $oDB;
|
|
|
|
}
|
2010-10-24 03:12:37 +04:00
|
|
|
|
2016-09-04 04:19:48 +03:00
|
|
|
function getDBQuoted($s)
|
|
|
|
{
|
|
|
|
return "'".pg_escape_string($s)."'";
|
|
|
|
}
|
2016-03-30 23:48:18 +03:00
|
|
|
|
2017-10-08 11:06:17 +03:00
|
|
|
function getArraySQL($a)
|
|
|
|
{
|
|
|
|
return 'ARRAY['.join(',', $a).']';
|
|
|
|
}
|
|
|
|
|
2016-09-04 04:19:48 +03:00
|
|
|
function getPostgresVersion(&$oDB)
|
|
|
|
{
|
|
|
|
$sVersionString = $oDB->getOne('select version()');
|
|
|
|
preg_match('#PostgreSQL ([0-9]+)[.]([0-9]+)[^0-9]#', $sVersionString, $aMatches);
|
|
|
|
return (float) ($aMatches[1].'.'.$aMatches[2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
function getPostgisVersion(&$oDB)
|
|
|
|
{
|
|
|
|
$sVersionString = $oDB->getOne('select postgis_full_version()');
|
|
|
|
preg_match('#POSTGIS="([0-9]+)[.]([0-9]+)[.]([0-9]+)( r([0-9]+))?"#', $sVersionString, $aMatches);
|
|
|
|
return (float) ($aMatches[1].'.'.$aMatches[2]);
|
|
|
|
}
|