PHP Classes

A MySQL Database Class: Run MySQL queries defined from parameter values

Recommend this page to a friend!
     
  Info   View files Files   Install with Composer Install with Composer   Download Download   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
StarStar 30%Total: 2,697 This week: 1All time: 1,413 This week: 42Up
Version License PHP version Categories
dhruv-mysql 1.0.0Artistic License4.0Databases
Description 

Author

This class can run MySQL queries defined from parameter values.

It can connect to a MySQL database server and run SQL SELECT, INSERT UPDATE and DELETE queries composed using parameter values that define table names, field names and values, condition clauses and result limit ranges.

The class can also run queries to get the fields from a table, analyze, optimize, create, alter and drop tables.

Picture of Dhruv Jain
Name: Dhruv Jain <contact>
Classes: 1 package by
Country: India India

Recommendations

How to find package ?
I'd like find package for accessing MySQL database.

Details

This class was developed by Dhruv Jain aka Hack Archives You may use this freely unles this notice remains intact Author Website: http://hackarchives.org Script is commented for easy usage Some examples here: 1.Running Queries $query = $db->exec("YOUR QUERY HERE"); 2.Selecting rows $result = $db->select("*","users","username='dhruv'","LIMIT 10"); 3.Show number of rows $num = $db->num_rows($result); 4.Fetch Array $fet = $db->fetch_array($result); YOu can perform many Mysql functions using this class.All major functions have been included.Please read through comments for better usage Regards, Dhruv Jain http://hackarchives.org

  Files folder image Files (2)  
File Role Description
Plain text file dbclass.php Class The main class file
Accessible without login Plain text file ReadMe.txt Doc. A Small Documentation

The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page.
Install with Composer Install with Composer
 Version Control Unique User Downloads Download Rankings  
 0%
Total:2,697
This week:1
All time:1,413
This week:42Up
User Ratings User Comments (2)
 All time
Utility:37%StarStar
Consistency:62%StarStarStarStar
Documentation:50%StarStarStar
Examples:-
Tests:-
Videos:-
Overall:30%StarStar
Rank:4347
 
I didn't see a method to connect to the database.
5 years ago (David Domingues)
40%StarStarStar
The mysql_connect, _query, etc.
12 years ago (AccountKiller)
22%StarStar