mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 09:27:25 +00:00
14 lines
No EOL
370 B
PHP
14 lines
No EOL
370 B
PHP
<?php
|
|
|
|
// This is the database connection configuration.
|
|
return array(
|
|
'connectionString' => 'sqlite:'.dirname(__FILE__).'/../data/testdrive.db',
|
|
// uncomment the following lines to use a MySQL database
|
|
/*
|
|
'connectionString' => 'mysql:host=localhost;dbname=testdrive',
|
|
'emulatePrepare' => true,
|
|
'username' => 'root',
|
|
'password' => '',
|
|
'charset' => 'utf8',
|
|
*/
|
|
); |