Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

connection to oracle db
(1 viewing) (1) Guest
Go to bottomPage: 12345
TOPIC: connection to oracle db
*
#53309
Re:connection to oracle db 9 Years, 2 Months ago Karma: 0
Hi, i'm working to let you access directly our Joomla/admin panel.

Best regards.
Regards.
Last Edit: 2015/02/03 10:05 By kmbarm77.
The administrator has disabled public write access.
 
#53312
Re:connection to oracle db 9 Years, 2 Months ago Karma: 0
Problem solved!
You have an error on page odbc_driver.inc
#############
if($this->persistent == 1)
{
$this->connectionId = odbc_pconnect( $this->host, $this->username, $this->password );
}
else
{
$this->connectionId = @odbc_connect( $this->host, $this->username, $this->password, $this->forcenewconnection);
}
#############

MUST BE

#############
if($this->persistent == 1)
{
$this->connectionId = odbc_pconnect( $this->host, $this->username, $this->password );
}
else
{
$this->connectionId = @odbc_connect( $this->host, $this->username, $this->password );
}
#############


resource odbc_connect ( string $dsn , string $user , string $password [, int $cursor_type ] )

cursor_type
This sets the type of cursor to be used for this connection. This parameter is not normally needed, but can be useful for working around problems with some ODBC drivers.

The following constants are defined for cursortype:
SQL_CUR_USE_IF_NEEDED
SQL_CUR_USE_ODBC
SQL_CUR_USE_DRIVER



Regards
The administrator has disabled public write access.
 
#53313
Re:connection to oracle db 9 Years, 2 Months ago Karma: 747
Thank you for your message. We have fixed the problem. "ARI Data Tables" v. 1.14.9 contains this fix.

PS: Sorry for inconvenience.

Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 12345