Is it at all possible to use Oracle.ManagedDataAccess with Oracle DB v.8.1.7? I've searched for hours, but failed to find a definitive answer anywhere.
Oracle.ManagedDataAccess with Oracle 8.1.7 DB
2.9k Views Asked by Aleksei Omelaienko At
2
There are 2 best solutions below
8
Patrick Hofman
On
I can't find any definitive on this, but there is a single line on this page on Managed ODP.NET that says:
You will also need access to Oracle Database 10g Release 2 (10.2) or later, ...
If that is just for the demo, or is a requirement for the driver isn't said.
Also this page says:
Each ODP.NET client supports connectivity to any currently supported Oracle Database version, such as 10g, 11g, or 9i. That means your ODP.NET 11g (or 10g) client application can access any of these Oracle database versions.
I would suggest to give it a try.
Related Questions in .NET
- Does compiler optimize operation on const variable and literal const number?
- What is the point of definnig Asp.net Intrinsic Objects In different places and what is the different betwen them?
- Deleting Orphans with Fluent NHibernate
- IOrderedEnumerable to vb.net IOrderedEnumerable Conversion
- What is this namespace ITypeOfObjectsBoundToListBox ? Couldn't find it
- .net rest service with JSON string and consumed with java client
- What is best way to check if any of the property of object is null or empty?
- Telerik's WPF RadColorPicker NoColorText property not working
- Possible consequences of duplicate ProgId for different classes
- How are multiple requests to Task.Run handled from a resource management standpoint?
- Optimizing C++ call from C#
- Make a per-web-application object available to Web API and SignalR controllers
- System.ComponentModel.DataAnnotations.Schema namespace conflict
- LINQ Except/Distinct based on few columns only, to not add duplicates
- Not displaying content by its URL string - absolute urls
Related Questions in ORACLE
- Column displays each count
- MAX and GROUP BY - SQL
- Best Practice for adding columns to a Table in Oracle database
- Updating an Oracle row with value from same row
- Retrieving data from Oracle database
- Ibatis execute update sql on oracle, it is not working and no exceptions
- Building an sql execution plan history
- Implementation of Rank and Dense Rank in MySQL
- how to update the date field for this specific condition using oracle query?
- Oracle stored procedure wrapping compile error with inline comments
- Android: How to connect oracle database using Android Java code?
- SQL Conditional Join on Columns
- Multi value wildcard search in ibatis
- Get count of consecutive days meeting a given criteria
- How to update the metadata of a layer in Oracle imported through FME Workbench?
Related Questions in ODP.NET
- ODP.NET Managed library does resolve alias, but 32-bit library does
- Oracle error: PLS-00306: wrong number or types of arguments
- Error in Oracle.ManagedDataAccess.dll: Item has already been added. Key in dictionary: '4118' Key being added: '4118'?
- How to get ODP.NET to return null value for User Defined Type from out parameter in Oracle stored procedure?
- Managed ODP.NET Calls to PUBLIC Database Link tables cause TNS errors
- Ar thematic operator Overflow Oracle ODP.NET
- Properly Install Oracle ODAC With ODT 11.2.3.20
- DbCommand.ExecuteNonQuery hangs indefinitely
- Oracle ODP.net Managed driver can't find the Oracle.Web
- EMPTY_BLOB in OracleParameter ODP.NET
- Missing SELECT keyword when inserting in ASP.NET
- OracleBulkCopy Class in Oracle.ManagedDataAccess.dll?
- Enterprise Library DAAB 6 and ODP.NET - Connection string for the default database 'XXX' does not exist
- Data access layer throws transaction exceptions when running multiple tests at the same time
- Exception while executing stored procedure odp.net
Related Questions in ODP.NET-MANAGED
- ODP.NET Managed library does resolve alias, but 32-bit library does
- Oracle ManagedDataAccess - Connection Request Timed out - Pooling
- pass array of objects to oracle stored procedure using ODP.Net managed client
- Managed ODP.NET Calls to PUBLIC Database Link tables cause TNS errors
- Oracle ODP.net Managed driver can't find the Oracle.Web
- Unable to connect through ODP Managed driver
- ODP.net managed driver throws ORA-12570: Network Session: Unexpected packet read error
- NLS environment settings and Oracle Managed ODP.Net
- ODP.NET Managed driver throws an exception while connecting to the Oracle Database
- Oracle.ManagedDataAccess with Oracle 8.1.7 DB
- How to directly use PKCS#12 file in ODP.NET?
- Issue with executing stored procedure with an OUT refcursor when using ODP.Net managed with Enterprise library
- Is it possible to cast Oracle User Defined Types (UDT) as byte[]/blob in ODP.NET?
- Where/How to view the ODP.NET source code?
- SocketException the first time OracleConnection.Open is used with fully managed Oracle data provider
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
No. ODP.NET Managed Driver only supports databases back to 10.2. As it is a relatively new product, there aren't old versions to fall back on.
The problem is the networking protocol changes over time and Oracle promises backward compatibility for two major versions.
If you must use ODP.NET and Oracle Database 8.1.7, consider using ODP.NET Unmanaged driver version 10.2. It is still available here: http://www.oracle.com/technetwork/topics/dotnet/utilsoft-086879.html Of course, using a very old version of ODP.NET introduces it's own limitations, such as lack of Entity Framework support and other things.