Abstracting Oracle Connectivity with PHP/OCI8November 25, 2002 Dante Lorenso
If you are like most lazy programmers, you get something to work, then you look for a way to do the same thing without having to cut and paste code or retype the same thing over and over. Well, I've found that connecting to Oracle is typically done the same way over and over. So, I've written some functions to help me run some queries without the drudgery of repetition. Take these functions, roll them into a PHP class, and voila! ... easy PHP/OCI8! Oracle How-To - The Hard WayTo do any database calls, the typical process is as follows:
Meanwhile, during each step in this process you need to check for errors and handle them appropriately. You might encounter an error during the OCILogon or during the OCIParse or during...well, you get the point. Abstract the SQL Query CallsWhat I've attempted to do is abstract this process into a single function prototyped as follows:
You may notice that this function takes three arguments: SID, SQL, and Bind Args. SID - The SID is the Oracle database you want to connect to. You'll notice that I'm not sending the username and password. You'll see why when you read the next section on abstracting the OCILogin. SQL - The SQL parameter is the SQL statement you want to run. This is a SELECT, INSERT, UPDATE command...whatever. You might even be calling a chunk of PL/SQL code. Regardless of the query, this function can handle it. Bind Args - The third parameter is an array of Bind arguments. Bind arguments allow you to pass IN/OUT variables to your SQL queries and enable a syntax of doing queries that don't require you to escape all your inputs. Once I discovered the use of bind arguments, my Oracle world was forever changed. Abstract the OCILogin (Database, Username, and Password)Another common problem in the Oracle connectivity world is where the passwords are stored. I've seen websites where Oracle usernames and passwords were sprinkled all over the place in this script and in that class. This makes it very difficult to maintain passwords or let alone go through the nightmare of trying to change one! What I've done is create another function to act as a password vault. I store the Oracle SID, username, and password as an array of three values which can be fetched by a given key. This way any time I want to connect to the "XYZ" database, I simply ask this function for the Account database name, username and password and get them. Here is a prototype for that function:
|