FromDriverManagerUnapplied

doobie.util.transactor$.Transactor$.FromDriverManagerUnapplied

Attributes

Source
transactor.scala
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def apply(driver: String, url: String, logHandler: Option[LogHandler[M]])(implicit ev: Async[M]): Aux[M, Unit]

Construct a new Transactor that uses the JDBC DriverManager to allocate connections.

Construct a new Transactor that uses the JDBC DriverManager to allocate connections.

Value parameters

driver

the class name of the JDBC driver, like "org.h2.Driver"

url

a connection URL, specific to your driver

Attributes

Source
transactor.scala
def apply(driver: String, url: String, user: String, password: String, logHandler: Option[LogHandler[M]])(implicit ev: Async[M]): Aux[M, Unit]

Construct a new Transactor that uses the JDBC DriverManager to allocate connections.

Construct a new Transactor that uses the JDBC DriverManager to allocate connections.

Value parameters

driver

the class name of the JDBC driver, like "org.h2.Driver"

password

database password

url

a connection URL, specific to your driver

user

database username

Attributes

Source
transactor.scala
def apply(driver: String, url: String, info: Properties, logHandler: Option[LogHandler[M]])(implicit ev: Async[M]): Aux[M, Unit]

Construct a new Transactor that uses the JDBC DriverManager to allocate connections.

Construct a new Transactor that uses the JDBC DriverManager to allocate connections.

Value parameters

driver

the class name of the JDBC driver, like "org.h2.Driver"

info

a Properties containing connection information (see DriverManager.getConnection)

url

a connection URL, specific to your driver

Attributes

Source
transactor.scala