芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/sommatv/vendor/illuminate/database/Schema/MySqlBuilder.php
grammar->compileTableExists(); $database = $this->connection->getDatabaseName(); $table = $this->connection->getTablePrefix().$table; return count($this->connection->select($sql, [$database, $table])) > 0; } /** * Get the column listing for a given table. * * @param string $table * @return array */ public function getColumnListing($table) { $sql = $this->grammar->compileColumnExists(); $database = $this->connection->getDatabaseName(); $table = $this->connection->getTablePrefix().$table; $results = $this->connection->select($sql, [$database, $table]); return $this->connection->getPostProcessor()->processColumnListing($results); } }