コード例 #1
0
ファイル: rb.php プロジェクト: tejdeeps/tejcs.com
 /**
  * Closes the database connection.
  */
 public function close()
 {
     $this->db->close();
 }
コード例 #2
0
ファイル: Database.class.php プロジェクト: neronmoon/Veronica
	/**
	 * Transactions.
	 * Part of the transaction management infrastructure of RedBean.
	 * Rolls back transaction.
	 */
	public function rollback() {
		return $this->db->FailTrans();
	}