I have learned some knowledge about Oracle ODP. net over the past few days. Of course, I am mainly studying the examples provided by Oracle ODP. I also encountered some problems during the learning process and proposed solutions. In addition, you can modify the examples in the learning process to gain a deeper understanding of them.
Those who have studied ADO. net should be familiar with these examples, for example:
Oracle. dataaccess. Client. oracleconnection inherits from system. Data. Common. dbconnection
Oracle. dataaccess. Client. oraclecommand inherits from system. Data. Common. dbcommand
Oracle. dataaccess. Client. oracledatareader inherits from system. Data. Common. dbdatareader
Oracle. dataaccess. Client. oracledataadapter inherits from system. Data. Common. dbdataadapter
Oracle. dataaccess. Client. oracletransaction inheritance and system. Data. Common. dbtransaction
Let's just take a look.
1. (original) ODP. Net demonstrate how to obtain lob data from dataset. Appendix: connecting to Oracle Database in. Net Environment
2. (original) ODP. Net demonstrate getting clob objects in the form of output parameters
3. (original) ODP. Net demonstrate how to obtain oracleclob data through the parameters of the stored procedure
4. The (original) ODP. Net demo obtains lob data in the form of a stream.
5. (original) ODP. Net demo bind oracleclob object as a parameter
6. (original) ODP. Net demonstrate lob update based on Row lock
7. (original) ODP. Net demonstrate how to update lob data through the lock Top Of The result set
I hope these examples will be helpful to your learning...