Get rid of _'s in the transaction methods
authorRobert Sesek <rsesek@bluestatic.org>
Sat, 16 Dec 2006 23:47:39 +0000 (23:47 +0000)
committerRobert Sesek <rsesek@bluestatic.org>
Sat, 16 Dec 2006 23:47:39 +0000 (23:47 +0000)
db.php
db_mysql.php

diff --git a/db.php b/db.php
index 06ac9da340f5015a46d1c2771388be30b260168c..0676d28c532867a39315b40d494d8ec177c600fc 100644 (file)
--- a/db.php
+++ b/db.php
@@ -415,7 +415,7 @@ abstract class BSDb
        * Sends the command to start a transaction. This command should never
        * be reached as it's always overridden
        */
-       public abstract function transaction_start();
+       public abstract function transactionStart();
        
        // ###################################################################
        /**
@@ -424,7 +424,7 @@ abstract class BSDb
        *
        * @param        string  Named savepoint
        */
-       public abstract function transaction_savepoint($name);
+       public abstract function transactionSavepoint($name);
        
        // ###################################################################
        /**
@@ -433,14 +433,14 @@ abstract class BSDb
        *
        * @param        string  Named savepoint
        */
-       public abstract function transaction_rollback($name = null);
+       public abstract function transactionRollback($name = null);
        
        // ###################################################################
        /**
        * Sends the command to commit the entire transaction. This command
        * should never be reached as it's always overridden
        */
-       public abstract function transaction_commit();
+       public abstract function transactionCommit();
        
        // ###################################################################
        /**
index cb24bef10bfe073db3ba584b0b7021de589cb381..e41a7f3a5f253e2b2f8c7d4993bc202a319555ad 100644 (file)
@@ -190,7 +190,7 @@ class BSDbMySql extends BSDb
        /**
        * Starts a database transaction
        */
-       public function transaction_start()
+       public function transactionStart()
        {
                $this->query("BEGIN WORK");
        }
@@ -201,7 +201,7 @@ class BSDbMySql extends BSDb
        *
        * @param        string  Named savepoint
        */
-       public function transaction_savepoint($name)
+       public function transactionSavepoint($name)
        {
                $this->query("SAVEPOINT $name");
        }
@@ -212,7 +212,7 @@ class BSDbMySql extends BSDb
        *
        * @param        string  Named savepoint
        */
-       public function transaction_rollback($name = null)
+       public function transactionRollback($name = null)
        {
                $this->query("ROLLBACK" . ($name != null ? " TO SAVEPOINT $name" : ""));
        }
@@ -221,7 +221,7 @@ class BSDbMySql extends BSDb
        /**
        * Commits a database transaction
        */
-       public function transaction_commit()
+       public function transactionCommit()
        {
                $this->query("COMMIT");
        }