object Databases
- Alphabetic
- By Inheritance
- Databases
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
apply(driver: String, url: String, name: String = "default", config: Map[String, _] = Map.empty): Database
Create a pooled database named "default" with the given driver and url.
Create a pooled database named "default" with the given driver and url.
- driver
the database driver class
- url
the database url
- name
the database name
- config
a map of extra database configuration
- returns
a configured database
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
inMemory(name: String = "default", urlOptions: Map[String, String] = Map.empty, config: Map[String, _] = Map.empty): Database
Create an in-memory H2 database.
Create an in-memory H2 database.
- name
the database name (defaults to "default")
- urlOptions
a map of extra url options
- config
a map of extra database configuration
- returns
a configured in-memory h2 database
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
withDatabase[T](driver: String, url: String, name: String = "default", config: Map[String, _] = Map.empty)(block: (Database) ⇒ T): T
Run the given block with a database, cleaning up afterwards.
Run the given block with a database, cleaning up afterwards.
- driver
the database driver class
- url
the database url
- name
the database name
- config
a map of extra database configuration
- block
The block of code to run
- returns
The result of the block
-
def
withInMemory[T](name: String = "default", urlOptions: Map[String, String] = Map.empty, config: Map[String, _] = Map.empty)(block: (Database) ⇒ T): T
Run the given block with an in-memory h2 database, cleaning up afterwards.
Run the given block with an in-memory h2 database, cleaning up afterwards.
- name
the database name (defaults to "default")
- urlOptions
a map of extra url options
- config
a map of extra database configuration
- block
The block of code to run
- returns
The result of the block