Edit
 by emil - 8 years ago (2017-05-23)
script for update mysql database
 | script for update mysql database  | 
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.
 |   by Saro Carvello   package author   515 - 7 years ago (2017-07-19) Comment
 This package can perform automatic generation of PHP classes from MySQL tables. 
It is able to access to a given MySQL database and retrieve schema tables and fields. 
For each table, it generates a class that provides methods for accessing, reading and writing its records by using object oriented programming logic. 
Each generated PHP class provides Setter and Getter methods for all table fields, as well as methods for CRUD operations.  | 
This class can connect and query a MySQL database.
It parses a INI file to extract the database server host, user, password and database name to connect.
The class can perform arbitrary SQL queries and extract the query results into arrays.
The database connection is closed when the object is destroyed.
 |   by Waqar Ahmed   package author   35 - 8 years ago (2017-05-25) Comment
 class has query() method to run update query on database  |