blob: 3871d94074d95fb557fa838e9211eef2d4b1c1ec [file] [log] [blame]
# ###############################
# SQL database configuration file
# ###############################
# ###############################
# Credentials
# ###############################
# Specifies the credentials for connecting to the SQL database
dbuser=postgres
dbpass=admin
# ###############################
# Database URL
# ###############################
# The direct SQL database url for connection
# Here it is not localhost, because the container has to address the postgreSQL
# container in the default docker environment used in this component
dburl=//postgres:5432/basyx-directory?
# ###############################
# SQL driver information
# ###############################
# Java Driver and connection prefix for using the driver
sqlDriver=org.postgresql.Driver
sqlPrefix=jdbc:postgresql:
# ###############################
# Microsoft SQL Server Example
# ###############################
# dburl=//localhost:1234;databaseName=mydb
# sqlDriver=com.microsoft.sqlserver.jdbc.SQLServerDriver
# sqlPrefix=jdbc:sqlserver: