Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><a href="http://book.cakephp.org/view/1075/DataSources" rel="nofollow">http://book.cakephp.org/view/1075/DataSources</a></p> <blockquote> <p>DataSources are the link between models and the source of data that models represent. In many cases, the data is retrieved from a relational database such as MySQL, PostgreSQL or MSSQL. CakePHP is distributed with several database-specific datasources (see the dbo_* class files in cake/libs/model/datasources/dbo/), a summary of which is listed here for your convenience:</p> <ul> <li>dbo_mssql.php</li> <li>dbo_mysql.php</li> <li>dbo_mysqli.php</li> <li>dbo_oracle.php</li> <li>dbo_postgres.php</li> <li><strong>dbo_sqlite.php</strong></li> </ul> </blockquote> <p><strong>EDIT:</strong></p> <p><a href="http://book.cakephp.org/view/922/Database-Configuration" rel="nofollow">http://book.cakephp.org/view/922/Database-Configuration</a></p> <p><em>Table below code listing.</em></p> <p><strong>driver</strong> row</p> <blockquote> <p>The name of the database driver this configuration array is for. Examples: mysql, postgres, <strong>sqlite</strong>, pear-drivername, adodb-drivername, mssql, oracle, or odbc. Note that for non-database sources (e.g. LDAP, Twitter), leave this blank and use "datasource".</p> </blockquote> <p>Have you just tried ti set the driver ?</p> <pre><code>var $default = array( 'driver' =&gt; 'sqlite', 'persistent' =&gt; false, 'host' =&gt; 'localhost', 'login' =&gt; 'login', 'password' =&gt; 'password', 'database' =&gt; 'full_path_to_sqlite_file', 'prefix' =&gt; '' ); </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload