CellSpace/Manual (draft)
by CellWorks
Home
Table of Contents
Glossary
JDBC
URL
A
JDBC
URL
is a
database
vendor specific notation used by a
JDBC
driver
to connect to a
database
.
These URLS's usually have the form:
jdbc:<database_product>://<host>:<port>/<catalog>
For example:
jdbc:mariadb://MyDataBaseServer:3306/mycatalog
In the example, this
JDBC
URL
would connect to a MariaDB database running on the host MyDataBaseServer at port 3306 using the a
database
catalog
configured as mycatalog.
See
JDBC
.
Also see
Supported
Databases
.