1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-12 09:22:01 +02:00

- Tuples? Nah,

- Install works w/ Oracle
- Got the queries in the database acp to conform to the CS
- profile acp now creates the proper alter column statement depending on the dbal


git-svn-id: file:///svn/phpbb/trunk@5842 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M
2006-04-24 22:13:52 +00:00
parent b622c0f31a
commit a279978718
5 changed files with 283 additions and 37 deletions

View File

@ -222,7 +222,7 @@ class dbal_postgres extends dbal
*/
function sql_affectedrows()
{
return ($this->query_result) ? @pg_cmdtuples($this->query_result) : false;
return ($this->query_result) ? @pg_affected_rows($this->query_result) : false;
}
/**