Sponsored Content
The Lounge What is on Your Mind? What do you think of the Oracle-Sun deal? Post 302346523 by Scott on Saturday 22nd of August 2009 05:30:24 PM
Old 08-22-2009
I think it's a strange tie up.

Not least because the only software Oracle would want from Sun is Java; and because Oracle doesn't make hardware.

We already have Unbreakable-Oracle, based on Red Hat, I think, and Solaris is unquestionably the most reliable, robust operating system on the planet, but I just (very sadly) don't see a future for Solaris, and I don't know why a tie-up with Oracle would either change their (Oracle's) roadmap, or swing the general way of things amongst consumers that Linux was not the way ahead.

Bad management has brought Sun almost to its knees - the OpenSource experminent hasn't worked (at least not in the way Sun intended it) and they're losing market share.

I'm not against the tie-up (and who would listen if I was?) but I just don't see how it will work... but time will tell...

In any case, the OS will have a fan-base forever, probably, and when it's really open - as opposed to now, where it isn't. it could prosper again.
 
Session::Store::Oracle(3)				User Contributed Perl Documentation				 Session::Store::Oracle(3)

NAME
Apache::Session::Store::Oracle - Store persistent data in a Oracle database SYNOPSIS
use Apache::Session::Store::Oracle; my $store = new Apache::Session::Store::Oracle; $store->insert($ref); $store->update($ref); $store->materialize($ref); $store->remove($ref); DESCRIPTION
Apache::Session::Store::Oracle fulfills the storage interface of Apache::Session. Session data is stored in a Oracle database. SCHEMA
To use this module, you will need at least these columns in a table called 'sessions': id varchar2(32) # or however long your session IDs are. a_session long To create this schema, you can execute this command using the sqlplus program: CREATE TABLE sessions ( id varchar2(32) not null primary key, a_session long ); If you use some other command, ensure that there is a unique index on the table's id column. CONFIGURATION
The module must know what datasource, username, and password to use when connecting to the database. These values can be set using the options hash (see Apache::Session documentation). The options are DataSource, UserName, and Password. Example: tie %hash, 'Apache::Session::Oracle', $id, { DataSource => 'dbi:Oracle:database', UserName => 'database_user', Password => 'K00l' }; Instead, you may pass in an already-opened DBI handle to your database. tie %hash, 'Apache::Session::Oracle', $id, { Handle => $dbh }; The last option is LongReadLen, which specifies the maximum size of the session object. If not supplied, the default maximum size is 8 KB. AUTHOR
This modules was written by Jeffrey William Baker <jwbaker@acm.org> A fix for the commit policy was contributed by Michael Schout <mschout@gkg.net> SEE ALSO
Apache::Session, Apache::Session::Store::DBI perl v5.12.1 2007-09-28 Session::Store::Oracle(3)
All times are GMT -4. The time now is 04:06 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy