Easy Code Share > SQL

MySQL Crud by Python DB Class and Error Handling

MySQL Crud by Python DB Class and Error Handling

We are introducing a Python DB class for helping your coding. In Python programming, MySQL connection and CRUD operations seem common, but have risks inside because of potential exceptions. Our open-source database class allows you to derive a child class, customize the child class, and, importantly, handle exceptions to reduce risks. Let’s begin with the … Read more

Easy Code Share > SQL

WebSQL Class Save Half Time in CRUD Programming

WebSQL Class Save Half Time in CRUD Programming

Asynchronous features of WebSQL API block developing speed in CRUD. We provide a class from which database objects is derived to make CRUD efficient. Especially for Cordova, WebSQL play a role in small-scale data storage such as session data. All codes here are not complicated, so you can easily understand even though you are still … Read more

Easy Code Share > SQL

Small PHP CRUD Class for OOP using MySQL

Small PHP CRUD Class for OOP using MySQL

PHP CRUD class treats a specific database you try to access to as a encapulation. Therefore, any Create/Read/Update/Delete operation by PHP on the tables in the specific database should make a function call to the public methods it has. We develop it based on PDO(PHP Data Object). PDO lets you connect to MySQL database, and … Read more