You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: samples/README.md
+8-3Lines changed: 8 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Running ODP.NET Core Samples from Command Line
16
16
1) Install .NET Core SDK from Microsoft's website: https://dotnet.microsoft.com/download
17
17
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>
18
18
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)
20
20
4) Replace the contents of Program.cs with the GitHub sample code of interest.
21
21
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.
22
22
6) Run using the following command: dotnet run --project (Sample Name)
@@ -44,8 +44,8 @@ PL/SQL Associative Array
44
44
45
45
Async
46
46
-----
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.
49
49
50
50
Autonomous Database
51
51
-------------------
@@ -143,6 +143,11 @@ Performance Counters
143
143
--------------------
144
144
* Sample 1: Demonstrates how to programmatically use ODP.NET performance counters.
145
145
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
+
146
151
Ref Cursor
147
152
----------
148
153
* Sample 1: Demonstrates how a REF Cursor is obtained as an OracleDataReader. <br>
0 commit comments