Subversion-Projekte lars-tiefland.prado

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/**
3
 * TMysqlCommandBuilder class file.
4
 *
5
 * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
6
 * @link http://www.pradosoft.com/
7
 * @copyright Copyright &copy; 2005-2008 PradoSoft
8
 * @license http://www.pradosoft.com/license/
9
 * @version $Id: TDbCommandBuilder.php 1863 2007-04-12 12:43:49Z wei $
10
 * @package System.Data.Common
11
 */
12
 
13
Prado::using('System.Data.Common.TDbCommandBuilder');
14
 
15
/**
16
 * TMysqlCommandBuilder implements default TDbCommandBuilder
17
 *
18
 * @author Wei Zhuo <weizho[at]gmail[dot]com>
19
 * @version $Id: TDbCommandBuilder.php 1863 2007-04-12 12:43:49Z wei $
20
 * @package System.Data.Common
21
 * @since 3.1
22
 */
23
class TMysqlCommandBuilder extends TDbCommandBuilder
24
{
25
}
26