UPD: Admin changed the title and I've found the solution: http://code.google.com/p/php-sql-parser/


I'm trying to convent sql query to php array.

For example: SELECT col_name FROM tbl_name WHERE col_name > 0;

Must return something like:

array(

'table' => 'tbl_name',

'value' => array('col_name'),

'where' => array('col_name > 0')

);

I've found this. Mb you know any better solution?

link|improve this question
8  
Are you certainly sure you want it? – Your Common Sense Jan 23 at 11:00
6  
if you are in any situation where there is a need to do this - you probably made a wrong turn somewhere along the way ... – Hannes Jan 23 at 11:03
well if you know the limit to the different types of queries you will be calling you can simyly use php's string operators to break it up and put the bit you want to go where you do :) – Hayden Thring Jan 23 at 11:04
feedback

1 Answer

up vote 2 down vote accepted

There are several packages that are available for this task:

Pear: http://pear.php.net/package/SQL_Parser (still fairly new)

txtSQL: http://sourceforge.net/projects/txtsql

PHP-SQL-Parse: http://code.google.com/p/php-sql-parser/ (as mentioned by the OP). This seems to be the most robust of these three (certainly the best documented)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.