1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-08 23:26:49 +02:00

IDibiDriver::getColumnsMeta() renamed to getResultColumns() (BC break!)

This commit is contained in:
David Grudl
2010-08-03 23:33:12 +02:00
parent 0d7b9c32c9
commit 746a553419
13 changed files with 13 additions and 13 deletions

View File

@@ -433,7 +433,7 @@ class DibiResultInfo extends DibiObject
{
if ($this->columns === NULL) {
$this->columns = array();
foreach ($this->driver->getColumnsMeta() as $info) {
foreach ($this->driver->getResultColumns() as $info) {
$this->columns[] = $this->names[$info['name']] = new DibiColumnInfo($this->driver, $info);
}
}

View File

@@ -223,7 +223,7 @@ interface IDibiDriver
* Returns metadata for all columns in a result set.
* @return array of {name, nativetype [, table, fullname, (int) size, (bool) nullable, (mixed) default, (bool) autoincrement, (array) vendor ]}
*/
function getColumnsMeta();
function getResultColumns();
/**
* Returns the result set resource.