Database

data class Database(val url: String, val driver: String, val username: String, val password: String)

Database properties fields (database.*).

Fields under the database root namespace are properties which control how the Grader accesses the database.

Fields in this namespace is only used when running the Grader in Daemon mode.

Constructors

Link copied to clipboard
constructor(url: String, driver: String, username: String, password: String)

Properties

Link copied to clipboard

The driver used to connect to the database.

Link copied to clipboard

The password for the user to log in.

Link copied to clipboard
val url: String

The URL to the database.

Link copied to clipboard

The username to log in to the database.