Public Member Functions | |
__construct (Connection $conn) | |
Creates a new IdGenerator class, saves passed connection for use later by getId() method. | |
isBeforeInsert () | |
isAfterInsert () | |
getIdMethod () | |
getId ($unused=null) | |
Private Attributes | |
$conn | |
Connection object that instantiated this class. |
Definition at line 12 of file SQLiteIdGenerator.php.
SQLiteIdGenerator::__construct | ( | Connection $ | conn | ) |
Creates a new IdGenerator class, saves passed connection for use later by getId() method.
Connection | $conn |
Definition at line 22 of file SQLiteIdGenerator.php.
00023 { 00024 $this->conn = $conn; 00025 }
SQLiteIdGenerator::getId | ( | $ | unused = null |
) |
Implements IdGenerator.
Definition at line 54 of file SQLiteIdGenerator.php.
SQLiteIdGenerator::getIdMethod | ( | ) |
Implements IdGenerator.
Definition at line 46 of file SQLiteIdGenerator.php.
SQLiteIdGenerator::isAfterInsert | ( | ) |
Implements IdGenerator.
Definition at line 38 of file SQLiteIdGenerator.php.
SQLiteIdGenerator::isBeforeInsert | ( | ) |
Implements IdGenerator.
Definition at line 30 of file SQLiteIdGenerator.php.
SQLiteIdGenerator::$conn [private] |
Connection object that instantiated this class.
Definition at line 15 of file SQLiteIdGenerator.php.