How to replace MySQL Server with Apache Derby as a PHP application database?

What is the code syntax and all that I need to install and configure, to connect to the Derby database and call Derby stored procedures (which are really Java code) from a PHP application?

i.e. In the PHP code, I want to replace the familiar calls mysql_connect()with the mysql_query()one that will connect to the Derby database and execute queries and stored procedures there.

+5
source share
2 answers

If I understand correctly, do you want to connect to JavaDB (also called Derby or Apache Derby ) from PHP?

, IBM DB2 PHP.

+6
+4

All Articles