Click to See Complete Forum and Search --> : PHP & MySQL simpler?


badmephisto
08-14-2008, 11:13 AM
Hi. I was incredibly excited when I discovered the JQuery library that made all my Ajax and animation code just instant. I am now searching for something similar for PHP, that would allow me to do MySQL stuff much more easily...

I don't want to have to deal with any cursors, exceptions, or anything like that, but just have simple arrays of results (or integers for COUNT calls) returned. Is there some library that does something like it?

ajaxexample
08-14-2008, 11:27 AM
I don't have experience with doing this in PHP, but a common system to use to make database access easier is to use something called ORM (Object Relational Mapping). I use Django's version, which is Python, and it's excellent.

Search Google (http://www.google.com/search?q=orm+php) and see if any of these solutions could help you.

Good luck

My site: Ajax Example (http://ajaxexample.net)

chazzy
08-14-2008, 03:11 PM
well what do you want to deal with? have you looked at PDO?