hello
I'm looking for some functions or objects allowing to
select-insert-update-delete from any table in a mysql database without the
need to create a new query every time. Example:
selectdatas(arr ay('field1','fi eld2','fieldn') ,array('table1' ,'tablen'),arra y('left
join,idy','inne r join, idx'))
then the function build the query, execute it and then return an object with
the query result.
I must build a database driven site that is 90% of the time spent on
building queries. If I may avoid build them manually it will help me a lot
and let me gain some days of programming.
Bob
I'm looking for some functions or objects allowing to
select-insert-update-delete from any table in a mysql database without the
need to create a new query every time. Example:
selectdatas(arr ay('field1','fi eld2','fieldn') ,array('table1' ,'tablen'),arra y('left
join,idy','inne r join, idx'))
then the function build the query, execute it and then return an object with
the query result.
I must build a database driven site that is 90% of the time spent on
building queries. If I may avoid build them manually it will help me a lot
and let me gain some days of programming.
Bob
Comment