PDO Class #pdo
Edit
by Filippo Berardo - 5 years ago (2019-05-12)
I need a class to connect to my db (mysql). Now my code is a old
| My php code now is not update and secure. i need a well made class for a scure and easy connection
|
Ask clarification
6 Recommendations
Dframe Database: Access a MySQL database using PDO
This package can access a MySQL database using PDO.
It can connect to a given MySQL database server using given configuration parameters.
The package provides several classes to build and execute SQL queries by defining condition clauses and retrieving the results.
| by Slawomir Kaleta package author 60 - 5 years ago (2020-01-09) Comment
PDO wrapper with well documentation on dframeframework.com/en/docs/database/master/query |
This class is a simple demonstration of how to access databases using PDO.
It shows how you can connect to a MySQL database server using PDO.
The class can also show how to insert a user record in database table using prepared queries, checking first if there is already a record for an user with the same user name or email address.
| by Dev Sharma package author 30 - 5 years ago (2019-07-23) Comment
Well it shows the user on how to use PDO database class and use it as a connection to MySQL along with an example on how you can actually use the class to insert users and do a lot of things that may help you. |
This class is a wrapper to access MySQL databases using PDO.
It can connect to a given MySQL server using PDO and then can perform several types of database access operations. Currently it can:
- Perform arbitrary SQL queries
- Bind parameter values of prepared queries
- Retrieve all rows of query results into an array
- Retrieve a single row of query results into an array
- Retrieve the ID value of the last recorded inserted into a table
- Begin, end and cancel a transaction
| by Clement Sam package author 120 - 5 years ago (2019-07-05) Comment
This code makes it easier to do what you want |
Niger: Query MySQL to generate data exports
This class can query MySQL to generate data exports.
It can connect to MySQL using MySQLi and execute arbitrary queries.
It can create CSV files with data from database query results and have the files split when they exceed a given number of lines.
| by Hassane Moussa package author 495 - 5 years ago (2019-05-27) Comment
Hi Berardo, This Class can help you ! try it !
Best regards,
Hassane |
PHP MySQL to MySQLi: Replace mysql functions using the mysqli extension
This class can replace the mysql functions using the mysqli extension.
It provides equivalent functions that perform the same operations as the mysql extension when this is not available.
An auxiliary script is provided to provide global functions with the same names and parameters as mysql extension functions except that they call the class to use the mysqli extension.
| by zinsou A.A.E.Moïse 6835 - 5 years ago (2019-05-13) Comment
As your code is old it may be very costly to rewrite it from scratch ...So you should use this package which is secure and will allow your code to work on old and new PHP versions... |
Connection DBMS: Connect to databases using PDO or MySQLi
This package can connect to databases using PDO or MySQLi.
It provides two classes: one to connect to a database using PDO and another to connect to MySQL using MySQLi.
Both classes can execute prepared queries from parameters and return the results in arrays.
| by Leonardo Mauro Pereira Moraes package author 35 - 5 years ago (2019-05-12) Comment
I suggest you to use the PDO Class.
You can execute any query using prepared statement. |