Query/drivers/pdo_firebird/pdo_firebird_util.php

25 lines
609 B
PHP
Raw Normal View History

2014-02-28 20:28:42 -05:00
<?php
/**
* Query
*
* Free Query Builder / Database Abstraction Layer
*
* @package Query
* @author Timothy J. Warren
* @copyright Copyright (c) 2012 - 2014
* @link https://github.com/aviat4ion/Query
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
2014-03-20 11:28:07 -04:00
require_once realpath(__DIR__ . '/../firebird/firebird_util.php');
2014-02-28 20:28:42 -05:00
/**
* Firebird-specific backup, import and creation methods
*
* @package Query
* @subpackage Drivers
*/
2014-03-20 11:28:07 -04:00
class PDO_Firebird_Util extends Firebird_Util {}
// End of pdo_firebird_util.php