Commit dae696fd authored by Jonas's avatar Jonas

Fixed readme.md for master branch

parent 86761019
MysqliDb -- Simple MySQLi wrapper and object mapper with prepared statements MysqliDb -- Simple MySQLi wrapper and object mapper with prepared statements
<hr> <hr>
### Table of Contents ### Table of Contents
(All _italic_ categories has been implemented by me.)
**[Initialization](#initialization)** **[Initialization](#initialization)**
**[Objects mapping](#objects-mapping)** **[Objects mapping](#objects-mapping)**
...@@ -9,8 +8,8 @@ MysqliDb -- Simple MySQLi wrapper and object mapper with prepared statements ...@@ -9,8 +8,8 @@ MysqliDb -- Simple MySQLi wrapper and object mapper with prepared statements
**[Update Query](#update-query)** **[Update Query](#update-query)**
**[Select Query](#select-query)** **[Select Query](#select-query)**
**[Delete Query](#delete-query)** **[Delete Query](#delete-query)**
**>> _[Insert Data](#insert-data)_** **[Insert Data](#insert-data)**
**>> _[Insert XML](#insert-xml)_** **[Insert XML](#insert-xml)**
**[Running raw SQL queries](#running-raw-sql-queries)** **[Running raw SQL queries](#running-raw-sql-queries)**
**[Query Keywords](#query-keywords)** **[Query Keywords](#query-keywords)**
**[Where Conditions](#where--having-methods)** **[Where Conditions](#where--having-methods)**
...@@ -24,7 +23,7 @@ MysqliDb -- Simple MySQLi wrapper and object mapper with prepared statements ...@@ -24,7 +23,7 @@ MysqliDb -- Simple MySQLi wrapper and object mapper with prepared statements
**[Helper Methods](#helper-methods)** **[Helper Methods](#helper-methods)**
**[Transaction Helpers](#transaction-helpers)** **[Transaction Helpers](#transaction-helpers)**
**[Error Helpers](#error-helpers)** **[Error Helpers](#error-helpers)**
**>> _[Table Locking](#table-locking)_** **[Table Locking](#table-locking)**
## Support Me ## Support Me
...@@ -745,5 +744,3 @@ $db->setLockMethod("READ")->lock(array("users", "log")); ...@@ -745,5 +744,3 @@ $db->setLockMethod("READ")->lock(array("users", "log"));
This will lock the tables **users** and **log** for **READ** access only. This will lock the tables **users** and **log** for **READ** access only.
Make sure you use **unlock()* afterwards or your tables will remain locked! Make sure you use **unlock()* afterwards or your tables will remain locked!
Last edited by Noneatme on June 28.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment