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:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
@@ -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.
|
||||
|
Reference in New Issue
Block a user