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 - 8 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.

+4

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 package can automatically generate PHP classes from MySQL tables.

It can access a given MySQL database and retrieve schema tables and fields.

For each table, it generates a class that uses object-oriented programming logic to provide methods for accessing, reading, and writing its records.
This recommendation solves the problem.
This recommendation does not solve the problem.

+1

Picture of Saro Carvello by Saro Carvello package author package author Reputation 515 - 8 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 package is a simple MySQL access abstraction layer using MySQLi.

It provides a main class that works as a singleton and can establish database connections and execute regular queries or execute common queries using parameters that define tables, fields, values and conditions.

It also provides classes for outputting debug information, manipulate prepared queries, and retrieve query results.

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

+1

Picture of Lars Moelleken by Lars Moelleken package author package author Reputation 30 - 8 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
: 
: