PHP Classes

php class file for InnoDB having the transaction handling: Mysql Innodb connection handling in PHP

Recommend this page to a friend!
  All requests RSS feed  >  php class file for InnoDB having the ...  >  Request new recommendation  >  A request is featured when there is no good recommended package on the site when it is posted. Featured requests  >  No recommendations No recommendations  

php class file for InnoDB having the transaction handling

Edit

Picture of shanmugam by shanmugam - 7 years ago (2016-11-22)

Mysql Innodb connection handling in PHP

This request is clear and relevant.
This request is not clear or is not relevant.

+3

A detailed class which handles the mysql Innodb connection and handling transaction

Ask clarification

2 Recommendations

MySQL Class Generator: Generate classes to access MySQL as objects

This recommendation solves the problem.
This recommendation does not solve the problem.

0

Picture of Saro Carvello by Saro Carvello package author package author Reputation 430 - 7 years ago (2017-03-06) Comment

This package can generate classes to access MySQL as objects. Each generated classe extends mysqli PHP class to support transaction.

The package access to a given MySQL database, retrieve its schema of tables and fields, and generates PHP classes for accessing, reading and writing records as objects.

A generates class have setter and getter functions for accessing record field values, as well functions to insert, update and delete table records.


Simple MySQLi Class: MySQL access abstraction layer using MySQLi

This recommendation solves the problem.
This recommendation does not solve the problem.

0

Picture of Lars Moelleken by Lars Moelleken package author package author Reputation 25 - 7 years ago (2016-11-29) Comment

Hi, you can use the Simple MySQLi Class, it can handle also InnoDB databases and you can easily

use voku\db\DB;

$db = DB::getInstance('localhost', 'root', '', 'mysql_test', 3306, 'utf8', false, false);

$db->beginTransaction();

if ($foo === false) { $db->rollback(); }

$db->endTransaction();

URL: github.com/voku/simple-mysqli/blob/master/tests/SimpleDbTest.php#L867


Recommend package
: 
: