/**
  * Initializes DBMS pointers and table name private class member.
  */
 function __construct()
 {
     // Initialize the dbms pointer.
     parent::__construct();
     // Initialize table name.
     $this->tableName = "real_voter_number";
 }
Example #2
0
 /**
  * Initializes DBMS pointers and table name private class member.
  */
 function __construct()
 {
     // Initialize the dbms pointer.
     parent::__construct();
     // Initialize table name.
     $this->tableName = "observers";
 }