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>