mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-05 08:17:47 +02:00
- Some profile stuff :D
- Some DB stuff :D git-svn-id: file:///svn/phpbb/trunk@6180 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -113,7 +113,7 @@ class dbal_firebird extends dbal
|
||||
|
||||
if (!$this->transaction)
|
||||
{
|
||||
@ibase_commit_ret();
|
||||
@ibase_commit();
|
||||
}
|
||||
|
||||
if ($cache_ttl && method_exists($cache, 'sql_save'))
|
||||
|
@@ -278,7 +278,7 @@ class dbal_oracle extends dbal
|
||||
// OCI->CLOB?
|
||||
if (is_object($value))
|
||||
{
|
||||
$value = ($value->size()) ? $value->read($value->size()) : '';
|
||||
$value = ociloadlob($value);
|
||||
}
|
||||
|
||||
$result_row[strtolower($key)] = $value;
|
||||
|
@@ -91,7 +91,7 @@ class dbal_postgres extends dbal
|
||||
{
|
||||
$version = @pg_version($this->db_connect_id);
|
||||
|
||||
return 'PostgresSQL' . ((!empty($version)) ? ' ' . $version['client'] : '');
|
||||
return 'PostgreSQL' . ((!empty($version)) ? ' ' . $version['client'] : '');
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user