Show Mysql.php syntax highlighted
<?php
/**
* @internal
* Quantum Game Library
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the text file LICENSE located in the root
* directory of this library.
* It is also available through the internet at this URL:
* http://doc.astrumfutura.com/license.html
*
* If you did not receive a copy of the license and are unable to
* obtain it through the internet, please send an email
* to license@astrumfutura.com so we can send you a copy.
*
* @package Db
* @subpackage Driver
* @category Quantum
* @copyright Copyright (c) 2007 The QGL Group (refer to COPYRIGHT file)
* @version $Id: Mysql.php 250 2007-02-15 13:48:50Z maugrim_t_r $
* @license http://doc.astrumfutura.com/license.html New BSD License
*/
/** Quantum_Db_Driver_Pdo_Abstract */
require_once 'Quantum/Db/Driver/Pdo/Abstract.php';
/**
* @package Db
* @subpackage Driver
* @category Quantum
* @author Pádraic Brady (http://blog.astrumfutura.com)
*
* Abstract access to the pdo_mysql extension. The abstraction in general
* deliberately follows the PDO interface where possible for common methods.
*/
class Quantum_Db_Driver_Pdo_Mysql extends Quantum_Db_Driver_Pdo_Abstract
{
/**
* Holds the current PDO extension type.
*
* @var string
*/
protected $_pdoType = 'mysql';
public function __construct(array $config)
{
parent::__construct($config);
}
}
See more files for this project here
Multiplayer space strategy game written in PHP5 with the Zend Framework. User interface uses Javascript/AJAX for dynamic interaction. Players compete across a hexagonal map of 10,000 sectors, planets, stars and other locations through trade and combat.
Project homepage:
http://sourceforge.net/projects/astrumfutura
Programming language(s): PHP,XML
License: other
Abstract.php
Mysql.php