Handy database libraries

Yes, I have to do the same tasks over and over again. Yes, these libraries make that easier.

  • puts all my database connection info in one place
  • php version hides db-specific function calls.
  • lets me get one row quicker (e.g. when you know the row ID)
  • lets me get one field easily (e.g. great for select count(*))
  • generates SQL for inserts and updates.
I wish I had more time to document this software. Oh well.
Back to Code Page