class/adodb.php 1 location
|
@@ 679-681 (lines=3) @@
|
| 676 |
|
* @see $aMetaColumnName |
| 677 |
|
*/ |
| 678 |
|
public function GetMetaColumnName ($table, $forcenew = false) { |
| 679 |
|
if (!isset($this->aMetaColumnName[$table]) || (true == $forcenew)) { |
| 680 |
|
$this->aMetaColumnName[$table] = $this->MetaColumnNames($table); |
| 681 |
|
} |
| 682 |
|
return $this->aMetaColumnName[$table]; |
| 683 |
|
} // end of func GetMetaColumnName |
| 684 |
|
|
src/Fwlib/Bridge/Adodb.php 1 location
|
@@ 787-789 (lines=3) @@
|
| 784 |
|
*/ |
| 785 |
|
public function getMetaColumnName($table, $forcenew = false) |
| 786 |
|
{ |
| 787 |
|
if (!isset($this->metaColumnName[$table]) || (true == $forcenew)) { |
| 788 |
|
$this->metaColumnName[$table] = $this->conn->MetaColumnNames($table); |
| 789 |
|
} |
| 790 |
|
|
| 791 |
|
return $this->metaColumnName[$table]; |
| 792 |
|
} |