CustomerInformation_Db.object
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:0k
源码类别:
WEB邮件程序
开发平台:
PHP
- <?php
- class CustomerInformation_Db extends BaseObject {
- Function CustomerInformation_Db() {
- $this->BaseObject( 'CustomerInformation_Db' );
- }
- Function Db( $driver = '', $db_config = '' ) {
- $driver = strtolower( $driver );
- switch( $driver ) {
- case 'mysql':
- return new Mysql_CustomerInformation_Db( $db_config );
- default:
- return new Dummy_CustomerInformation_Db( $db_config );
- }
- }
- }
- ?>