blob: 9fd02d32b38b3da2c3b16874eaa6c9d0302175a8 (
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
  | 
<?php
/**
 * TMysqlCommandBuilder class file.
 *
 * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 * @link http://www.pradosoft.com/
 * @copyright Copyright © 2005-2007 PradoSoft
 * @license http://www.pradosoft.com/license/
 * @version $Id: TDbCommandBuilder.php 1863 2007-04-12 12:43:49Z wei $
 * @package System.Data.Common
 */
Prado::using('System.Data.Common.TDbCommandBuilder');
/**
 * TMysqlCommandBuilder implements default TDbCommandBuilder
 *
 * @author Wei Zhuo <weizho[at]gmail[dot]com>
 * @version $Id: TDbCommandBuilder.php 1863 2007-04-12 12:43:49Z wei $
 * @package System.Data.Common
 * @since 3.1
 */
class TMysqlCommandBuilder extends TDbCommandBuilder
{
}
?>
  |