slick.backend

DatabaseConfig

Related Docs: trait DatabaseConfig | package backend

object DatabaseConfig

Source
DatabaseConfig.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. DatabaseConfig
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  5. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. macro def forAnnotation[P <: BasicProfile](implicit ct: ClassTag[P]): DatabaseConfig[P]

    Load a driver and database configuration from the URI specified in a StaticDatabaseConfig annotation in the static scope of the caller.

  10. macro def forAnnotation[P <: BasicProfile](classLoader: ClassLoader = ClassLoaderUtil.defaultClassLoader)(implicit ct: ClassTag[P]): DatabaseConfig[P]

    Load a driver and database configuration from the URI specified in a StaticDatabaseConfig annotation in the static scope of the caller.

  11. def forConfig[P <: BasicProfile](path: String, config: Config, classLoader: ClassLoader)(implicit arg0: ClassTag[P]): DatabaseConfig[P]

    Load a driver and database configuration through Typesafe Config.

    Load a driver and database configuration through Typesafe Config.

    The following config parameters are available:

    • driver (String, required): The fully qualified name of a class or object which implements the specified profile. If the name ends with $ it is assumed to be an object name, otherwise a class name.
    • db (Config, optional): The configuration of a database for the driver's backend. For JdbcProfile-based' drivers (and thus JdbcBackend), see JdbcBackend.DatabaseFactory.forConfig for parameters that should be defined inside of db.
    path

    The path in the configuration file for the database configuration (e.g. foo.bar would find a driver name at config key foo.bar.driver) or an empty string for the top level of the Config object.

    config

    The Config object to read from. This defaults to the global app config (e.g. in application.conf at the root of the class path) if not specified.

    classLoader

    The ClassLoader to use to load any custom classes from.

  12. def forConfig[P <: BasicProfile](path: String, config: Config = ConfigFactory.load())(implicit arg0: ClassTag[P]): DatabaseConfig[P]

    Load a driver and database configuration through Typesafe Config.

    Load a driver and database configuration through Typesafe Config.

    The following config parameters are available:

    • driver (String, required): The fully qualified name of a class or object which implements the specified profile. If the name ends with $ it is assumed to be an object name, otherwise a class name.
    • db (Config, optional): The configuration of a database for the driver's backend. For JdbcProfile-based' drivers (and thus JdbcBackend), see JdbcBackend.DatabaseFactory.forConfig for parameters that should be defined inside of db.
    path

    The path in the configuration file for the database configuration (e.g. foo.bar would find a driver name at config key foo.bar.driver) or an empty string for the top level of the Config object.

    config

    The Config object to read from. This defaults to the global app config (e.g. in application.conf at the root of the class path) if not specified.

  13. def forURI[P <: BasicProfile](uri: URI, classLoader: ClassLoader)(implicit arg0: ClassTag[P]): DatabaseConfig[P]

    Load a driver and database configuration from the specified URI.

    Load a driver and database configuration from the specified URI. If only a fragment name is given, it is resolved as a path in the global app config (e.g. in application.conf at the root of the class path), otherwise as a path in the configuration located at the URI without the fragment, which must be a valid URL. Without a fragment, the whole config object is used.

  14. def forURI[P <: BasicProfile](uri: URI)(implicit arg0: ClassTag[P]): DatabaseConfig[P]

    Load a driver and database configuration from the specified URI.

    Load a driver and database configuration from the specified URI. If only a fragment name is given, it is resolved as a path in the global app config (e.g. in application.conf at the root of the class path), otherwise as a path in the configuration located at the URI without the fragment, which must be a valid URL. Without a fragment, the whole config object is used.

  15. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  22. def toString(): String

    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped