특정 테이블 행의 수를 확인할 수 있습니다. `Query Builder`의 일부입니다.
'; echo $db->table('my_table')->countAll(); echo '특정 결과의 행 수를 확인할 수 있습니다. `Query Builder`의 일부입니다.
'; echo $db->table('my_table')->like('title', '2')->countAllResults(); echo '실행중인 데이터베이스 플랫폼을 출력합니다.
'; echo $db->getPlatform(); echo '실행중인 데이터베이스 버전을 출력합니다.
'; echo $db->getVersion(); } }