Re: Oracle scheme
From: Roy Fine (rlfine_at_twt.obfuscate.net)
Date: 06/08/04
- Next message: Jon Davis: "When do DataReaders close?"
- Previous message: William Ryan eMVP: "Re: What is wrong with the following code?"
- In reply to: Robert Scheer: "Re: Oracle scheme"
- Next in thread: Robert Scheer: "Re: Oracle scheme"
- Reply: Robert Scheer: "Re: Oracle scheme"
- Messages sorted by: [ date ] [ thread ]
Date: Mon, 7 Jun 2004 21:24:23 -0400
"Robert Scheer" <rbscheer@my-deja.com> wrote in message
news:cfd22ab6.0406071721.651827df@posting.google.com...
> rbscheer@my-deja.com (Robert Scheer) wrote in message
news:<cfd22ab6.0406061015.20065562@posting.google.com>...
> > Hi.
> >
> > I was developing a web application using SQL Server. Suddenly, my
> > customer decided to use Oracle 8.1.6 as the database. The DBA is
> > deciding if the application will access a new database or a scheme and
> > I wiil have to migrate my SqlHelper class to an OracleHelper class.
> > What is the purpose of an Oracle scheme? Can I access it using the
> > .NET Oledb Provider?
> >
> > Thanks,
> > Robert Scheer
>
>
> Thanks Roy and Gregory.
>
> It seems that can't really use the Oledb Provider. In my researches I
> found that Oledb does not support Oracle cursors. Can you confirm
> that?
> Also, I found that in order to use ODP.NET I need to install the
> Oracle Client 9 but my database is 8i. Can I use this newer client to
> access an older database without problems?
>
> Thanks,
> Robert Scheer
Robert -
Someone is giving you bad (or at least incomplete) info - OLEDB does in fact
support cursors - but it does not support updatable cursors -- all cursors
from Oracle are Read Only. There is the cursor that is opened with the For
Update clause, but that is still read only, and its advantage or a standard
cursor is that it includes the rowid as a hidden column, to be used in the
UPDATE..FOR CURRENT OF statement.
With respect to ODP.NET - yes you must have Oracle 9iR2 client installed.
You can still connect and access an Oracle 8i database, but obviously, you
will only be able to use 8i functionality in that case.
regards
roy fine
- Next message: Jon Davis: "When do DataReaders close?"
- Previous message: William Ryan eMVP: "Re: What is wrong with the following code?"
- In reply to: Robert Scheer: "Re: Oracle scheme"
- Next in thread: Robert Scheer: "Re: Oracle scheme"
- Reply: Robert Scheer: "Re: Oracle scheme"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|