v1.3.0
Add Limit in in Select Class
How To Use:
$MySql = new MySql("localhost", "root", "MySql", "world", $state);
$Select = new Select($MySql);
//Selecting all, with 5 Limit
$Select->All("country", 5);
//Selecting everything where the region is "South America", with 5 Limit
$Select->Where("country", "Region", "South America", 5);