Skip to content

Releases: FreddyB1/easy-mysql

Easy-MySQL v3.8

24 May 19:01
ed1867c
Compare
Choose a tag to compare

Easy-MySQL v3.7

24 Jun 23:40
e2f45a1
Compare
Choose a tag to compare

Bugs solved.
Added insert options. (Engine, Charset etc.)
Added Charset function in SQL::Connect.
Added Null or not null option in AddTableColumn.

SQL::Connect(const host[], const user[], const password[], const database[], const charset[] = "latin5", debugging = 0, port = 3306, bool:autoreconnect = true, pool_size = 2);

new handle = SQL::Open(SQL::CREATE, "database", "engine default InnoDB", -1, "charset default latin5");
SQL::AddTableColumn(handle, const field_name[], SQL::datatypes: type = SQL_TYPE_INT, maxlength = 11, bool:null = false, bool:auto_increment = false, bool:setprimary = false, bool:setindex = false)
SQL::Close(handle);

Easy-MySQL v3.6

14 Dec 06:57
077e40a
Compare
Choose a tag to compare

SQL_ReadRetrievedRows has been changed to SQL::ReadRetrievedRows so it matches the existing style.

easy-mysql v3.5

27 Nov 03:06
e821bec
Compare
Choose a tag to compare

A few functions renamed. (AddTableEntry > AddTableColumn)
Support for foreign keys, multi read, indexes added.

easy-mysql.inc

27 Sep 21:16
Compare
Choose a tag to compare

Simplifying the usage of MySQL plugin by BlueG.