Oracle 11g1 works great under Fedora 9
have used PHP 5.2.6/OCI8 1.3.4 to access 11g1 from Firefox
PHP code available as well as oci C++ code + makefile
If not here, questions answered by otn.oracle.com - OTN Forum
I am developing classes for dynamic SQL using
OCI(Oracle Call Interface) which are simple to use. The complexity of
OCI/RDB is hidden and OCI access is fast!
RDB* rdbx = new RDB("landon","password"); // instantiate
// create array of structures, one structure per row
// structure elements are column values...then:
rdbx->insert_structs(address of array of structures); or reverse
rdbx->select_structs(address of array of structures);
Last edited by landonmkelsey; 11-30-2008 at 11:28 PM.
Reason: added lines
|