Skip to content

Commit

Permalink
Merge pull request #731 from daneshk/master
Browse files Browse the repository at this point in the history
Fix broken links in API Docs
  • Loading branch information
niveathika authored Aug 27, 2024
2 parents 116ead6 + 6b9cd59 commit 3093fe5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ clients can be created by using specific database libraries such as `mysql` or u
library `jdbc`.

### List of database libraries
Ballerina now has the [`jdbc` library](https://docs.central.ballerina.io/ballerinax/java.jdbc/latest) as the generic DB connector library to connect to any relational database by simply providing the JDBC URL and the other related properties.
Ballerina now has the [`jdbc` library](https://docs.central.ballerina.io/ballerinax/java.jdbc) as the generic DB connector library to connect to any relational database by simply providing the JDBC URL and the other related properties.

Ballerina also provides specially designed various database-specific DB connectors so that you can work with different databases, and you can access their DB-specific functionalities.
* [`MySQL` library](https://central.ballerina.io/ballerinax/mysql)
Expand All @@ -30,7 +30,7 @@ A database client can be created using any of the above-listed database librarie
#### Handle connection pools

All database libraries share the same connection pooling concept and there are three possible scenarios for
connection pool handling. For its properties and possible values, see the [`sql:ConnectionPool`](https://docs.central.ballerina.io/ballerina/sql/latest/records/ConnectionPool).
connection pool handling. For its properties and possible values, see the [`sql:ConnectionPool`](https://docs.central.ballerina.io/ballerina/sql/latest#ConnectionPool).

> **Note**: Connection pooling is used to optimize opening and closing connections to the database. However, the pool comes with an overhead. It is best to configure the connection pool properties as per the application need to get the best performance.
Expand Down Expand Up @@ -512,6 +512,6 @@ All contributors are encouraged to read the [Ballerina code of conduct](https://
## Useful links

* For more information go to the [`sql` library](https://lib.ballerina.io/ballerina/sql/latest).
* For example demonstrations of the usage, go to [Ballerina By Examples](https://ballerina.io/learn/by-example/mysql-init-options.html).
* For example demonstrations of the usage, go to [Ballerina By Examples](https://ballerina.io/learn/by-example/#database-access).
* Chat live with us via our [Discord server](https://discord.gg/ballerinalang).
* Post all technical questions on Stack Overflow with the [#ballerina](https://stackoverflow.com/questions/tagged/ballerina) tag.
4 changes: 2 additions & 2 deletions ballerina/Module.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ clients can be created by using specific database modules such as `mysql` or usi
module `jdbc`.

### List of database modules
Ballerina now has the [`jdbc` module](https://docs.central.ballerina.io/ballerinax/java.jdbc/latest) as the generic DB connector module to connect to any relational database by simply providing the JDBC URL and the other related properties.
Ballerina now has the [`jdbc` module](https://docs.central.ballerina.io/ballerinax/java.jdbc) as the generic DB connector module to connect to any relational database by simply providing the JDBC URL and the other related properties.

Ballerina also provides specially designed various database-specific DB connectors so that you can work with different databases, and you can access their DB-specific functionalities.
* [`MySQL` module](https://central.ballerina.io/ballerinax/mysql)
Expand All @@ -22,7 +22,7 @@ A database client can be created using any of the above-listed database librarie
#### Handle connection pools

All database modules share the same connection pooling concept and there are three possible scenarios for
connection pool handling. For its properties and possible values, see the [`sql:ConnectionPool`](https://docs.central.ballerina.io/ballerina/sql/latest/records/ConnectionPool).
connection pool handling. For its properties and possible values, see the [`sql:ConnectionPool`](https://docs.central.ballerina.io/ballerina/sql/latest#ConnectionPool).

> **Note**: Connection pooling is used to optimize opening and closing connections to the database. However, the pool comes with an overhead. It is best to configure the connection pool properties as per the application need to get the best performance.
Expand Down
4 changes: 2 additions & 2 deletions ballerina/Package.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ clients can be created by using specific database packages such as `mysql` or us
package `jdbc`.

### List of database packages
Ballerina now has the [`jdbc` package](https://docs.central.ballerina.io/ballerinax/java.jdbc/latest) as the generic DB connector package to connect to any relational database by simply providing the JDBC URL and the other related properties.
Ballerina now has the [`jdbc` package](https://docs.central.ballerina.io/ballerinax/java.jdbc) as the generic DB connector package to connect to any relational database by simply providing the JDBC URL and the other related properties.

Ballerina also provides specially designed various database-specific DB connectors so that you can work with different databases, and you can access their DB-specific functionalities.
* [`MySQL` package](https://central.ballerina.io/ballerinax/mysql)
Expand All @@ -22,7 +22,7 @@ A database client can be created using any of the above-listed database librarie
#### Handle connection pools

All database packages share the same connection pooling concept and there are three possible scenarios for
connection pool handling. For its properties and possible values, see the [`sql:ConnectionPool`](https://docs.central.ballerina.io/ballerina/sql/latest/records/ConnectionPool).
connection pool handling. For its properties and possible values, see the [`sql:ConnectionPool`](https://docs.central.ballerina.io/ballerina/sql/latest#ConnectionPool).

> **Note**: Connection pooling is used to optimize opening and closing connections to the database. However, the pool comes with an overhead. It is best to configure the connection pool properties as per the application need to get the best performance.
Expand Down

0 comments on commit 3093fe5

Please sign in to comment.