Quote:
Originally Posted by
Legend986
Sorry but someone please? I'm afraid I couldn't adapt your perl code in php. This database of mine contains millions of records so I don't know how to write that... Any thoughts on my previous post?
Sorry if am deviating you from the problem!
The above posted code to select the relation set works fine.
If you are not able to incorporate the perl code into php,
what you could do is have the perl script as a separate script and call that from php script
Something like,
perl script to be named as run.pl
within php,
select column1, column2 from table1; ## dump the output in a file
call the perl file run.pl
and now you should have the output needed.