Support Forums
EZSQL The PHP Database Class - Printable Version

+- Support Forums (https://www.supportforums.net)
+-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87)
+--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18)
+---- Forum: Database Programming (https://www.supportforums.net/forumdisplay.php?fid=28)
+---- Thread: EZSQL The PHP Database Class (/showthread.php?tid=4385)

Pages: 1 2


EZSQL The PHP Database Class - Omniscient - 01-16-2010

http://www.woyano.com/view/213/Download-ezSQL-Database-Class-205

That's one of my favorite database classes for php to use as a framework. It's actually similar to how mybb works.

http://justinvincent.com/docs/ezsql/ez_sql_help.htm

That will simplify greatly any dynamic website you may build.


RE: EZSQL The PHP Database Class - Jordan L. - 01-16-2010

Ah thanks for the share Omni. If I'm not mistaken, you made an EZSql Plugin or something, didn't you?


RE: EZSQL The PHP Database Class - Gaijin - 01-16-2010

Thank you, I'll check this out....
Since I have written something smiliar, this will come in handy to learn few techniques from!


RE: EZSQL The PHP Database Class - Omniscient - 01-16-2010

That plugin was unrelated to this library.


RE: EZSQL The PHP Database Class - Drakeā„¢ - 04-05-2010

Very nice share. I'm looking at it now.


RE: EZSQL The PHP Database Class - php - 04-05-2010

Thank you very much. I'm deciding on making a new forum, I might actually use this.


RE: EZSQL The PHP Database Class - JesusOfSuburbia - 05-01-2010

thank's...very nice guide!!! Oui


RE: EZSQL The PHP Database Class - Julie - 05-01-2010

Thanks Omni, I will try it out.


RE: EZSQL The PHP Database Class - MrD. - 06-01-2010

In their documentation, they say:
Quote:$db->escape() makes any string safe to use as a value in a query under all PHP conditions. I.E. if magic quotes are turned on or off. Note: Should not be used by itself to guard against SQL injection attacks. The purpose of this function is to stop accidental mal formed queries.

Now considering that EZSQL is supposed to be an abstraction layer to the actual database that is used, how would you recommend you go about preventing SQL injection considering that mysql_real_escape_string implies that it will only work when you are using a MySQL database, and not another kind of SQL database?


RE: EZSQL The PHP Database Class - Legit - 05-31-2011

Ah thanks for the share Omni.