skip to Main Content

Using ADOdb with ODBC and Oracle – PHP

I've been given access to an Oracle Server via ODBC and tested the connection using Oracle SQL Developer. These are the connection constants I've set in PHP: define('APP_DB_HOST', '192.168.1.1'); define('APP_DB_PORT', '1521'); define('APP_DB_USER', 'MyUser'); define('APP_DB_PASS', 'MyPass'); define('APP_DB_SID', 'MyDatabaseSID'); define('APP_DB_SCHEMA', 'MyDatabaseSchema'); With…

VIEW QUESTION

Doing PHP word processing

I have retrieved data from a MSSQL server table. I was able to display them thanks to a query. I would like to be able to modify these data without touching the table For example the values which are in…

VIEW QUESTION
Back To Top
Search