Skip to content

Releases: TheDevick/MySql

v1.4.0

01 Nov 12:03
b4bd452
Compare
Choose a tag to compare

Add Order By in in Select Class
How To Use:

$MySql = new MySql("localhost", "root", "MySql", "world", $state);

$Select = new Select($MySql);

//Selecting all, order by Code
$Select->All("country", "Code");

//Selecting everything where the region is "South America", Order Ny Name, with 5 Limit
$Select->Where("country", "Region", "South America", "Name", 5);

v1.3.0

31 Oct 23:27
Compare
Choose a tag to compare

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);

v1.2.1

31 Oct 20:37
Compare
Choose a tag to compare

Test Codes Improve

v1.2.0

31 Oct 19:10
Compare
Choose a tag to compare

Add Drop Class
How To Use:

$MySql = new MySql("localhost", "root", "MySql", "world", $state);

//Creating Table To Drop
$Create = new Create($MySql);
$Create->Table(
    "TableName",
    ["Value 1", "Value2"],
    ["varchar(20)", "varchar(50)"]
);

//Dropping Table
$Drop = new Drop($MySql);
$Drop->Table("TableName");

v1.1.1

31 Oct 06:49
Compare
Choose a tag to compare

Use Create Class in Tests

v1.1.0

31 Oct 06:43
Compare
Choose a tag to compare

Add Create Class.
How To Use:

$MySql = new MySql("localhost", "root", "MySql", "world", $state);
$Create = new Create($MySql);
$Create->Table(
    "TableName",
    ["Value 1", "Value2"],
    ["varchar(20)", "varchar(50)"]
);

v1.0.0

31 Oct 02:41
Compare
Choose a tag to compare

The First Version of MySql | PHP Library