diff --git a/MysqliDb.php b/MysqliDb.php index 2e1c4a5c..d910156a 100644 --- a/MysqliDb.php +++ b/MysqliDb.php @@ -1123,4 +1123,14 @@ public function _transaction_status_check () { return; $this->rollback (); } + /** + * [GetColumn description] + * @param string + */ + public function GetColumn ($table='') { + $Columns = $this->rawQuery("SHOW COLUMNS FROM ".$this->db.".".$table); + return $Columns; + } + + } // END class