-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2527 from EnterpriseDB/release/2022-04-06
Release: 2022-04-06
- Loading branch information
Showing
21 changed files
with
234 additions
and
283 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
--- | ||
title: "Release Notes" | ||
title: "Release notes" | ||
|
||
--- | ||
The EDB .NET Connector provides connectivity between a .NET client application and an Advanced Server database server. | ||
The EDB .NET Connector provides connectivity between a .NET client application and an EDB Postgres Advanced Server database server. | ||
|
||
New features, enhancements, bug fixes, and other changes in the EDB .NET Connector `5.0.7.1` include: | ||
|
||
| Type | Description | | ||
| -------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| Upstream Merge | Merged with the upstream Npgsql driver version 5.0.7. For more information about the merge updates, see <https://www.nuget.org/packages/Npgsql/5.0.7>. | | ||
| Upstream merge | Merged with the upstream Npgsql driver version 5.0.7. For more information about the merge updates, see <https://www.nuget.org/packages/Npgsql/5.0.7>. | | ||
| Enhancement | Support for .NET 5.0 and .NET Core 3.1 (earlier available as .NET Core 3.0). | |
8 changes: 3 additions & 5 deletions
8
product_docs/docs/net_connector/5.0.7.1/02_requirements_overview.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 9 additions & 9 deletions
18
...cs/docs/net_connector/5.0.7.1/03_the_advanced_server_net_connector_overview.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
--- | ||
title: "The EDB .NET Connector - Overview" | ||
title: "The EDB .NET Connector overview" | ||
|
||
--- | ||
|
||
<div id="the_advanced_server_net_connector_overview" class="registered_link"></div> | ||
|
||
The EDB .NET Connector is a .NET data provider that allows a client application to connect to a database stored on an Advanced Server host. The .NET Connector accesses the data directly, allowing the client application optimal performance, a broad spectrum of functionality, and access to Advanced Server features. | ||
The EDB .NET Connector is a .NET data provider that allows a client application to connect to a database stored on an EDB Postgres Advanced Server host. The .NET Connector accesses the data directly, allowing the client application optimal performance, a broad spectrum of functionality, and access to EDB Postgres Advanced Server features. | ||
|
||
The .NET Connector supports following frameworks: | ||
The .NET Connector supports the following frameworks: | ||
|
||
- .NET 5.0 | ||
- .NET Core 3.1 | ||
- .NET Standard 2.0 and 2.1 | ||
|
||
|
||
## The .NET Class Hierarchy | ||
## The .NET class hierarchy | ||
|
||
The .NET Class Hierarchy contains a number of classes that you can use to create objects that control a connection to the Advanced Server database and manipulate the data stored on the server. The following are just a few of the most commonly used object classes: | ||
The .NET class hierarchy contains classes that you can use to create objects that control a connection to the EDB Postgres Advanced Server database and manipulate the data stored on the server. The following are just a few of the most commonly used object classes. | ||
|
||
`EDBConnection` | ||
|
||
The `EDBConnection` class represents a connection to Advanced Server. An `EDBConnection` object contains a `ConnectionString` that instructs the .NET client how to connect to an Advanced Server database. | ||
The `EDBConnection` class represents a connection to EDB Postgres Advanced Server. An `EDBConnection` object contains a `ConnectionString` that instructs the .NET client how to connect to an EDB Postgres Advanced Server database. | ||
|
||
`EDBCommand` | ||
|
||
An `EDBCommand` object contains an SQL command that the client will execute against Advanced Server. Before you can execute an `EDBCommand` object, you must link it to an `EDBConnection` object. | ||
An `EDBCommand` object contains an SQL command that the client executes against EDB Postgres Advanced Server. Before you can execute an `EDBCommand` object, you must link it to an `EDBConnection` object. | ||
|
||
`EDBDataReader` | ||
|
||
An `EDBDataReader` object provides a way to read an Advanced Server result set. You can use an `EDBDataReader` object to step through one row at a time, forward-only. | ||
An `EDBDataReader` object provides a way to read an EDB Postgres Advanced Server result set. You can use an `EDBDataReader` object to step through one row at a time, forward only. | ||
|
||
`EDBDataAdapter` | ||
|
||
An `EDBDataAdapter` object links a result set to the Advanced Server database. You can modify values and use the `EDBDataAdapter` class to update the data stored in an Advanced Server database. | ||
An `EDBDataAdapter` object links a result set to the EDB Postgres Advanced Server database. You can modify values and use the `EDBDataAdapter` class to update the data stored in an EDB Postgres Advanced Server database. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.