blob: a4f717e00cc3d1f768786bac21cdc3cd2cac038d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php
/**
* TMysqlCommandBuilder class file.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado\Data\Common\Mysql
*/
namespace Prado\Data\Common\Mysql;
use Prado\Data\Common\TDbCommandBuilder;
use Prado\Prado;
Prado::using('System.Data.Common.TDbCommandBuilder');
/**
* TMysqlCommandBuilder implements default TDbCommandBuilder
*
* @author Wei Zhuo <weizho[at]gmail[dot]com>
* @package Prado\Data\Common\Mysql
* @since 3.1
*/
class TMysqlCommandBuilder extends TDbCommandBuilder
{
}
|