>  기사  >  백엔드 개발  >  YII2에서 MODEL이 "SHOW FULL COLUMNS FROM TABLE"을 사용하여 테이블 필드를 속성으로 얻는 이유는 무엇입니까?

YII2에서 MODEL이 "SHOW FULL COLUMNS FROM TABLE"을 사용하여 테이블 필드를 속성으로 얻는 이유는 무엇입니까?

WBOY
WBOY원래의
2016-08-18 09:15:332415검색

YII2에서 MODEL이 테이블 필드를 속성으로 얻는 방법은 MODEL에 직접 작성하는 대신 "SHOW FULL COLUMNS FROM TABLE"을 사용하는 것입니다. 때때로 데이터베이스 정보를 읽는 이러한 추가 오버헤드는 불필요해 보입니다. 결국 테이블 결과는 자주 수정되지 않습니다. 이 방법을 사용하는 이유는 무엇입니까?

<code>    protected function loadTableSchema($name)
    {
        $table = new TableSchema;
        $this->resolveTableNames($table, $name);

        if ($this->findColumns($table)) {
            $this->findConstraints($table);

            return $table;
        } else {
            return null;
        }
    }</code>
<code>    protected function findColumns($table)
    {
        $sql = 'SHOW FULL COLUMNS FROM ' . $this->quoteTableName($table->fullName);
        try {
            $columns = $this->db->createCommand($sql)->queryAll();
        } 
        .........
    }</code>

답글 내용:

YII2에서 MODEL이 테이블 필드를 속성으로 얻는 방법은 MODEL에 직접 작성하는 대신 "SHOW FULL COLUMNS FROM TABLE"을 사용하는 것입니다. 때때로 데이터베이스 정보를 읽는 이러한 추가 오버헤드는 불필요해 보입니다. 결국 테이블 결과는 자주 수정되지 않습니다. 이 방법을 사용하는 이유는 무엇입니까?

<code>    protected function loadTableSchema($name)
    {
        $table = new TableSchema;
        $this->resolveTableNames($table, $name);

        if ($this->findColumns($table)) {
            $this->findConstraints($table);

            return $table;
        } else {
            return null;
        }
    }</code>
<code>    protected function findColumns($table)
    {
        $sql = 'SHOW FULL COLUMNS FROM ' . $this->quoteTableName($table->fullName);
        try {
            $columns = $this->db->createCommand($sql)->queryAll();
        } 
        .........
    }</code>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.