Query/tests/databases/firebird/firebird-qb.php

38 lines
833 B
PHP
Raw Normal View History

2012-03-15 09:25:18 -04:00
<?php
/**
* Query
*
* Free Query Builder / Database Abstraction Layer
*
2012-04-20 13:17:39 -04:00
* @package Query
* @author Timothy J. Warren
2012-03-15 09:25:18 -04:00
* @copyright Copyright (c) 2012
* @link https://github.com/aviat4ion/Query
2012-04-20 13:17:39 -04:00
* @license http://philsturgeon.co.uk/code/dbad-license
2012-03-15 09:25:18 -04:00
*/
// --------------------------------------------------------------------------
/**
* Firebird Query Builder Tests
*/
class FirebirdQBTest extends QBTest {
2012-03-15 09:25:18 -04:00
function __construct()
{
parent::__construct();
2012-04-11 11:48:56 -04:00
$dbpath = TEST_DIR.DS.'db_files'.DS.'FB_TEST_DB.FDB';
2012-03-15 09:25:18 -04:00
// Test the query builder
$params = new Stdclass();
$params->type = 'firebird';
$params->file = $dbpath;
$params->host = 'localhost';
$params->user = 'sysdba';
$params->pass = 'masterkey';
$this->db = new Query_Builder($params);
2012-03-19 13:58:14 -04:00
// echo '<hr /> Firebird Queries <hr />';
}
2012-03-15 09:25:18 -04:00
}