mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Don't create transactions for SELECT queries
This commit is contained in:
parent
33d7bf5c15
commit
3f9eb61e07
1 changed files with 32 additions and 43 deletions
|
@ -136,11 +136,10 @@ class DBLayer {
|
||||||
$lastId = $this -> PDO -> lastInsertId();
|
$lastId = $this -> PDO -> lastInsertId();
|
||||||
$this -> PDO -> commit();
|
$this -> PDO -> commit();
|
||||||
}
|
}
|
||||||
catch ( Exception $e )
|
catch ( Exception $e ) {
|
||||||
{
|
|
||||||
// for rolling back the changes during transaction
|
// for rolling back the changes during transaction
|
||||||
$this -> PDO -> rollBack();
|
// $this -> PDO -> rollBack();
|
||||||
throw new Exception( "error in inseting" );
|
throw $e; // new Exception( "error in inseting" );
|
||||||
}
|
}
|
||||||
return $lastId;
|
return $lastId;
|
||||||
}
|
}
|
||||||
|
@ -158,14 +157,11 @@ class DBLayer {
|
||||||
public function selectWithParameter( $param, $tb_name, $data, $where ) {
|
public function selectWithParameter( $param, $tb_name, $data, $where ) {
|
||||||
$this->useDb();
|
$this->useDb();
|
||||||
try {
|
try {
|
||||||
$sth = $this -> PDO -> prepare( "SELECT $param FROM $tb_name WHERE $where" );
|
$sth = $this->PDO->prepare( "SELECT $param FROM $tb_name WHERE $where" );
|
||||||
$this -> PDO -> beginTransaction();
|
$sth->execute( $data );
|
||||||
$sth -> execute( $data );
|
|
||||||
$this -> PDO -> commit();
|
|
||||||
}
|
}
|
||||||
catch ( Exception $e ) {
|
catch ( Exception $e ) {
|
||||||
$this -> PDO -> rollBack();
|
throw $e; // new Exception( "error selection" );
|
||||||
throw new Exception( "error selection" );
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return $sth;
|
return $sth;
|
||||||
|
@ -180,18 +176,14 @@ class DBLayer {
|
||||||
* @param string $where where to select in format('fieldname=:fieldname' AND ...).
|
* @param string $where where to select in format('fieldname=:fieldname' AND ...).
|
||||||
* @return statement object.
|
* @return statement object.
|
||||||
*/
|
*/
|
||||||
public function select( $tb_name, $data , $where ) {
|
public function select($tb_name, $data , $where) {
|
||||||
$this->useDb();
|
$this->useDb();
|
||||||
try {
|
try {
|
||||||
$sth = $this -> PDO -> prepare( "SELECT * FROM $tb_name WHERE $where" );
|
$sth = $this->PDO->prepare("SELECT * FROM $tb_name WHERE $where");
|
||||||
$this -> PDO -> beginTransaction();
|
$sth->execute( $data );
|
||||||
$sth -> execute( $data );
|
|
||||||
$this -> PDO -> commit();
|
|
||||||
}
|
}
|
||||||
catch( Exception $e )
|
catch (Exception $e) {
|
||||||
{
|
throw $e; // new Exception( "error selection" );
|
||||||
$this -> PDO -> rollBack();
|
|
||||||
throw new Exception( "error selection" );
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return $sth;
|
return $sth;
|
||||||
|
@ -208,26 +200,23 @@ class DBLayer {
|
||||||
public function update( $tb_name, $data, $where ) {
|
public function update( $tb_name, $data, $where ) {
|
||||||
$this->useDb();
|
$this->useDb();
|
||||||
$field_option_values = null;
|
$field_option_values = null;
|
||||||
foreach ( $data as $key => $value )
|
foreach ( $data as $key => $value ) {
|
||||||
{
|
|
||||||
$field_option_values .= ",$key" . '=:' . $key;
|
$field_option_values .= ",$key" . '=:' . $key;
|
||||||
}
|
}
|
||||||
$field_option_values = ltrim( $field_option_values, ',' );
|
$field_option_values = ltrim( $field_option_values, ',' );
|
||||||
try {
|
try {
|
||||||
$sth = $this -> PDO -> prepare( "UPDATE $tb_name SET $field_option_values WHERE $where " );
|
$sth = $this -> PDO -> prepare( "UPDATE $tb_name SET $field_option_values WHERE $where " );
|
||||||
|
|
||||||
foreach ( $data as $key => $value )
|
foreach ( $data as $key => $value ) {
|
||||||
{
|
|
||||||
$sth -> bindValue( ":$key", $value );
|
$sth -> bindValue( ":$key", $value );
|
||||||
}
|
}
|
||||||
$this -> PDO -> beginTransaction();
|
$this -> PDO -> beginTransaction();
|
||||||
$sth -> execute();
|
$sth -> execute();
|
||||||
$this -> PDO -> commit();
|
$this -> PDO -> commit();
|
||||||
}
|
}
|
||||||
catch ( Exception $e )
|
catch ( Exception $e ) {
|
||||||
{
|
$this->PDO->rollBack();
|
||||||
$this -> PDO -> rollBack();
|
throw $e; // new Exception( 'error in updating' );
|
||||||
throw new Exception( 'error in updating' );
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
@ -272,14 +261,14 @@ class DBLayer {
|
||||||
public function delete( $tb_name, $data, $where ) {
|
public function delete( $tb_name, $data, $where ) {
|
||||||
$this->useDb();
|
$this->useDb();
|
||||||
try {
|
try {
|
||||||
$sth = $this -> PDO -> prepare( "DELETE FROM $tb_name WHERE $where" );
|
$sth = $this->PDO->prepare( "DELETE FROM $tb_name WHERE $where" );
|
||||||
$this -> PDO -> beginTransaction();
|
$this->PDO->beginTransaction();
|
||||||
$sth -> execute( $data );
|
$sth->execute( $data );
|
||||||
$this -> PDO -> commit();
|
$this->PDO->commit();
|
||||||
}
|
}
|
||||||
catch (Exception $e) {
|
catch (Exception $e) {
|
||||||
$this -> PDO -> rollBack();
|
$this->PDO->rollBack();
|
||||||
throw new Exception( "error in deleting" );
|
throw $e; // new Exception( "error in deleting" );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue