quoteTableName() 공개 메소드

Quotes a table name for use in a query.
public quoteTableName ( string $name ) : string
$name string table name
리턴 string the properly quoted table name
예제 #1
0
 /**
  * Quotes a table name for use in a query.
  * @param string $name table name
  * @return string the properly quoted table name
  */
 public function quoteTableName($name)
 {
     return parent::quoteTableName($name, '`', '`');
 }
예제 #2
0
 /**
  * Quotes a table name for use in a query.
  * @param string $name table name
  * @return string the properly quoted table name
  */
 public function quoteTableName($name)
 {
     return parent::quoteTableName($name, "'", "'");
 }