Skip to content

Commit bda0887

Browse files
authored
Update README.md (#406)
Added references to the enabled and disabled pipelining samples and updated info for the async and sync samples.
1 parent 177f863 commit bda0887

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

samples/README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Running ODP.NET Core Samples from Command Line
1616
1) Install .NET Core SDK from Microsoft's website: https://dotnet.microsoft.com/download
1717
2) Open a terminal such as PowerShell, command prompt, or bash. Enter the following commands to create and setup your ODP.NET Core sample: <br>
1818
A) dotnet new console --output (Sample Name) <br>
19-
B) dotnet add package Oracle.ManagedDataAccess.Core --version (e.g. 3.21.120)
19+
B) dotnet add package Oracle.ManagedDataAccess.Core --version (e.g. 23.5.0)
2020
4) Replace the contents of Program.cs with the GitHub sample code of interest.
2121
5) Insert your user id, password, and data source. The sample will have its own README or comments to indicate additional configuration that may be required.
2222
6) Run using the following command: dotnet run --project (Sample Name)
@@ -44,8 +44,8 @@ PL/SQL Associative Array
4444

4545
Async
4646
-----
47-
* Async Sample: Demonstrates using asynchronous ODP.NET (managed or core) and times its execution time.<br>
48-
* Sync Sample: Demonstrates using synchronous ODP.NET (managed or core) and times its execution time.
47+
* Async Sample: Demonstrates using asynchronous ODP.NET (managed or core) and measures operation time.<br>
48+
* Sync Sample: Demonstrates using synchronous ODP.NET (managed or core) and measures operation time to compare with async.
4949

5050
Autonomous Database
5151
-------------------
@@ -143,6 +143,11 @@ Performance Counters
143143
--------------------
144144
* Sample 1: Demonstrates how to programmatically use ODP.NET performance counters.
145145

146+
Pipelining and Async
147+
--------------------
148+
* Pipelining and Async Sample: Demonstrates using pipelining and async ODP.NET (managed or core) and measures operation time.<br>
149+
* No Pipelining and Sync Sample: Disables pipelining while using synchronous ODP.NET (managed or core) and measures operation time to compare with async and pipelining sample.
150+
146151
Ref Cursor
147152
----------
148153
* Sample 1: Demonstrates how a REF Cursor is obtained as an OracleDataReader. <br>

0 commit comments

Comments
 (0)