Dummy_DbDriver.class
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. <?php
  2. class Dummy_DbDriver extends BaseObject {
  3.    var $sql_statement;
  4.    var $db_connection_handle;
  5.    var $debug;
  6.    Function Dummy_DbDriver() {
  7.       $this->BaseObject( 'Dummy_DbDriver' );
  8.       $this->sql_statement          = '';
  9.       $this->db_connection_handle   = '';
  10.       $this->debug                  = new Debug();
  11.       $this->debug->prefix          = 'Dummy_Db::DbDriver';
  12.       $this->debug->off();
  13.    }
  14.    Function Exec()                  { return false; }
  15.    Function GetInsertId()           { return false; }
  16.    Function FetchRow()              { return false; }
  17.    Function FetchCell( $xx, $yy )   { return false; }
  18. }
  19. ?>