/var/www/hkosl.com/demo_google/application/vendor/illuminate/database/Schema/MySqlBuilder.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php

namespace Illuminate\Database\Schema;

class 
MySqlBuilder extends Builder
{
    
/**
     * Determine if the given table exists.
     *
     * @param  string  $table
     * @return bool
     */
    
public function hasTable($table)
    {
        
$table $this->connection->getTablePrefix().$table;

        return 
count($this->connection->select(
            
$this->grammar->compileTableExists(), [$this->connection->getDatabaseName(), $table]
        )) > 
0;
    }

    
/**
     * Get the column listing for a given table.
     *
     * @param  string  $table
     * @return array
     */
    
public function getColumnListing($table)
    {
        
$table $this->connection->getTablePrefix().$table;

        
$results $this->connection->select(
            
$this->grammar->compileColumnListing(), [$this->connection->getDatabaseName(), $table]
        );

        return 
$this->connection->getPostProcessor()->processColumnListing($results);
    }
}