Search code examples
phpresultsetrecordset

PHP Recordset available?


working both with Java and Visual Basic, I see that I can completely manage databases with ResultSet (Java) or RecordSet (V.B.). I mean, if I read a table from a db with a SELECT query, I can update it without make a new UPDATE or INSERT INTO query. Is it possible to do it with PHP?

Thank you in advance.


Solution

  • If I understand your question correctly, PHP core doesn't have won't have want you want, but many frameworks built on PHP will, such as http://codeigniter.com/user_guide/database/active_record.html or http://www.doctrine-project.org/.