12345678910 |
- <?php
-
- class PHP_CRUD_API_Config
- {
- public static $dbengine='MySQL'; // 'MySQL', 'SQLServer', 'PostgreSQL' or 'SQLite'
- public static $hostname='{{test_hostname}}'; // 'localhost' for MySQL, '(Local)' for SQLServer, empty for SQLite
- public static $username='{{test_username}}'; // May be empty on SQLServer or SQLite
- public static $password='{{test_password}}'; // May be empty on SQLServer or SQLite
- public static $database='{{test_database}}'; // NB: Use an empty database, data will be LOST!
- }
|