Tagged Questions
The oci8 tag has no wiki summary.
4
votes
2answers
4k views
How do I require a specific version of a ruby gem?
Specifically, the ruby-oci8 gem. I have both 1.0.7 and 2.0.4 installed. I want 1.0.7.
I can just require oci8, but I don't get the version I want.
irb(main):001:0> require 'oci8'
=> true
...
4
votes
5answers
2k views
oci_connect Blank Page in PHP
UPDATE (5/21/2010) SUCCESS!
So after MUCH $head->desk()'ing, I've solved it.
Remember kids, be wary of the instant client version you use, dependent on the virtualization settings!
I had been ...
3
votes
1answer
329 views
PDO_OCI vs OCI8
I'm working on a new project and trying to determine if I should use PDO_OCI or oci8 for a database connection. Unfortunately I don't think anyone has really compared the two.
The information I have ...
3
votes
2answers
651 views
How to sort by numbers first with Oracle SQL query?
I have this table with a 'title' field which is varchar2 and I want to select all rows and sort them first by number and then by the alphabet as it normally happens.
For instance, I currently get ...
3
votes
4answers
373 views
Can PHP and Oracle pass complex types to each other?
I want to pass/bind an array of (key1, key2) to an Oracle PL/SQL stored procedure using PHP. I'm able to bind primitive types and arrays of primitive types, but haven't found a way to pass complex ...
3
votes
3answers
2k views
Dealing with eacute and other special characters using Oracle, PHP and Oci8
Hi I am trying to store names into an Oracle database and fetch them back using PHP and oci8.
However, if I insert the é directly into the Oracle database and use oci8 to fetch it back I just receive ...
2
votes
1answer
54 views
Why doesn't OCI-Lob->close work for IN OUT parameters?
From the documentation I've read regarding LOBs and the OCI8 PHP extension, it seems like I should call $lob->close() in the code below, since I have used $lob->writeTemporary(). ...
2
votes
1answer
814 views
CHAR semantics and ORA-01461
I maintain a PHP driven application with Oracle backend (OCI8 functions). The app is developed with Oracle 10g XE and deployed on whatever version the customer owns.
The application handles ...
2
votes
1answer
139 views
How can I connect PHP 5.1 to Oracle 7?
I have been able to query newer Oracle databases using the PHP oci8 extension with the Oracle 10.2 Instant Client. Unfortunately, the Oracle Instant Client seems to be unable to connect to an Oracle ...
2
votes
1answer
588 views
Can I return values to PHP from an anonymous PL/SQL block?
I'm using PHP and OCI8 to execute anonymous Oracle PL/SQL blocks of code. Is there any way for me to bind a variable and get its output upon completion of the block, just as I can when I call stored ...
1
vote
0answers
40 views
Pass multidimensional array to Oracle stored procedure
I have SP with custom type:
Create Or Replace Type tyTestArrayType As Object
(siF1 SmallInt,
siF2 SmallInt,
siF3 SmallInt);
Create Or Replace Type tyTestArray Is Table Of ...
1
vote
2answers
182 views
Set a time limit to an oracle query
I need to interrupt the execution of an oracle query if it is taking more than 10 seconds, and give user a message informing him about execution timeout.
I googled a lot but i didn't find anything ...
1
vote
1answer
145 views
Are there OCI8 replacements for ADO MoveFirst and EOF, BOF?
I am researching the possibility of porting an application written in classic ASP with ADO record sets and an Oracle database to PHP5 and OCI8. We have lots of stored procedures and queries with bind ...
0
votes
0answers
40 views
ruby shoes oci8 connect issue
sorry for my english.
I am interested about ruby shoes gui development, but on my experiments I didn't get to connect to oracle database, I have created a file with a code like this:
require 'oci8'
...
0
votes
0answers
31 views
ORACLE + PHP on MAC OS X. Works in Terminal not in Webbrowser How to configure APACHE? [closed]
I have problem with RIGHT configuration of APACHE.
When I let interpret my php file connecting with oci_connect to oracle, via TERMINAL it WORKS!
It does NOT work with any browser on localhost. What ...
0
votes
1answer
52 views
Ruby OCI8 DBI, how to check query generated after parameter binding? need to check for “in” queries
While using Ruby-DBI I am facing issues with paramter binding for where "in" queries.
Two questions
How do I get sql generated after parameter binding?
Does in parameter for sql work properly if ...
0
votes
0answers
49 views
Oracle collections with oci8 driver in PHP
I am using OCI8 driver for PHP (php_oci8_11g) and I have Oracle database with API that returns a collection. And I cant find the way how to get that collection to PHP. Any hints?
0
votes
2answers
387 views
ActiveRecord oracle_enhanced adapter can't load ruby-oci8 library
After successfully installing the ruby-0ci8 gem and the oracle_enhanced adapter gem I get the following error when I try to fire up my rails project server:
=> Booting WEBrick
=> Rails 3.0.3 ...
0
votes
0answers
35 views
Is it possible to return result with oci8 (php) similar to mysql_query()?
I'd like to add some abstraction to oci_fetch_assoc() function but I can't figure out if it's possible to return a resource (like it's done with http://www.php.net/manual/en/function.mysql-query.php) ...
0
votes
2answers
579 views
oci8 + php cgi not working
I have successfully instaled oci8 module following this guide:
http://orfeogpl.info/wiki/index.php/Ubuntu_Oci8_Php5
oci8 is working through php cli but not through cgi /http
Does anyone knows ...
0
votes
0answers
266 views
Why my YII need have installed Oracle's Instant Client libraries?
I am playing with Yii framework and now I am investigating Yii Shell. But if I use this command:
yiic shell
I always get this error message:
PHP Warning: PHP Startup: Unable to load dynamic ...
0
votes
1answer
53 views
OCI8 script giving a blank page
Okay, I am trying to use OCI8 with PHP 5.3.x and Oracle 10g and the latest Apache 2.2.x ! I did everything written in Oracle & PHP underground manual to set it up. But when run this, script, all I ...
0
votes
0answers
117 views
How to get multiple resultsets from an oracle stored procedure into a php function? I am using oci8 extension for oracle connectivity?
here is my stored procedure:
CREATE OR REPLACE PROCEDURE NEW_TEST(
OrderID IN Number,
RCORDER IN OUT sys_RefCursor,
RCDETAILS IN OUT sys_RefCursor) AS
BEGIN
Open RCORDER for
Select * from test ...
0
votes
1answer
43 views
How to read variable from procedure call
i'm new to oracle and i've got a problem with reading an output parameter from sql block of code. I've searched many manuals and tutorials but i still can't help myself.
$sql = "declare
A ...
0
votes
3answers
545 views
OCI8 extensions load in CLI but not browser
We are having almost the same issue as this person:
OCI8 functions not found when run by apache with php5
The difference between their issue and ours is that we only have one php.ini (/etc/php.ini). ...
0
votes
2answers
91 views
What is the preferred way to get access a transaction to commit or rollback?
I understand how transactions work and everything functions as expected, but I do not like the way I access connections to commit or rollback transactions.
I have 3 service classes that can access ...
0
votes
1answer
96 views
Oracle exceptions displayed as PHP warnings not errors
I'm interacting with an Oracle database using the oci8 interface.
My problem is that whenever the Oracle code raises an exception with an appropriate message and code, PHP emits a warning and not an ...
0
votes
2answers
302 views
Connect to Oracle database on a different server from PHP
Hello I have a database engine sitting on a remote server, while my webserver is present locally. I have worked pretty much with client-server architecture, where the server has both the webserver and ...
0
votes
2answers
902 views
how to install oracle instant client for xampp
I have XAMPP for Windows 1.7.3 installed.
I'm using Zend Framework and need to use the pdo_oci8 extension. I've enabled the extension - but now getting the error that it can't find the oci.dll file.
...
0
votes
2answers
371 views
oci8 on Ubuntu error
I have already installed oracle xe 10g, apache, php in ubuntu by following the ebook Underground Oracle-PHP-manual. But when i run some file connection oracle-PHP using oci_connect() show error :
...
0
votes
2answers
273 views
OCIError on 'require'; permissions issue?
I've just recently started learning/using Ruby at work. I've got a super-simple test script that just connects to our Oracle 10g database, runs a select, and 'puts' the results to the screen. This ...
0
votes
1answer
476 views
Why is PHP's OCI8/Oracle oci_bind_array_by_name not working for me?
I'm trying to bind a php variable to pl/sql array. The pl/sql procedure works fine when I execute it manually and set the bind, so I know that's not the problem. It's the oci_bind_array_by_name that ...
0
votes
1answer
886 views
Where's the OCI8 extension in PHP/5.3.2?
I'm deploying a PHP application that connects to an Oracle 9i server using the OCI8 functions. I've installed the latest official binaries for Windows (PHP/5.3.2) in order to run it as Apache 2.2 ...
0
votes
1answer
442 views
OCI8 functions not found when run by apache with php5
I'm trying to set up a server for a project in my databases class. I'll be writing the project in php, deploying it via apache, and connecting to a remote oracle server. I'm having trouble with the ...
0
votes
2answers
217 views
Problem with return value of oci_parse
what will be the condition of if , where i want to execute some command inside if ,if there is no row returned by the query.
if()
{
}
else
{
}
?>
0
votes
3answers
341 views
Return a 'DESC package' in PHP using OCI
Hi I am trying to get information on an Oracle package directly from PHP using OCI8:
$sql = 'DESC my_package';
$stmt = oci_parse($conn, $sql);
oci_execute($stmt);
this returns:
Warning: ...
0
votes
2answers
1k views
Oracle Global Temporary Table / PHP interaction question
I've never used the Global Temporary Tables however I have some questions how they will work in a php environment.
How is data shared: Assuming persistent connections to oracle through php using ...
-1
votes
2answers
103 views
Need help calling the column_name in the table while connecting via Oracle DB
I am trying to get the value from the table(employee)connecting through
the oracle database. Since there are 100s of values in one column, i would need to
iterate the table and get the exact value.
I ...