slick.jdbc

DatabaseUrlDataSource

Related Doc: package jdbc

class DatabaseUrlDataSource extends DriverDataSource

A DataSource that wraps the DriverManager API. It can be configured as a Java Bean and used both stand-alone and as a source for a connection pool. This implementation is design specifically to handle a non-JDBC Database URL in the format defined by the libpq standard.

Source
DatabaseUrlDataSource.scala
Linear Supertypes
DriverDataSource, Logging, Closeable, AutoCloseable, DataSource, Wrapper, CommonDataSource, AnyRef, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. DatabaseUrlDataSource
  2. DriverDataSource
  3. Logging
  4. Closeable
  5. AutoCloseable
  6. DataSource
  7. Wrapper
  8. CommonDataSource
  9. AnyRef
  10. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DatabaseUrlDataSource()

Value Members

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

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

    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from DatabaseUrlDataSource to any2stringadd[DatabaseUrlDataSource] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (DatabaseUrlDataSource, B)

    Implicit information
    This member is added by an implicit conversion from DatabaseUrlDataSource to ArrowAssoc[DatabaseUrlDataSource] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

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

    Definition Classes
    Any
  7. var classLoader: ClassLoader

    Definition Classes
    DriverDataSource
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def close(): Unit

    Definition Classes
    DriverDataSource → Closeable → AutoCloseable
  10. var deregisterDriver: Boolean

    Definition Classes
    DriverDataSource
  11. var driverClassName: String

    Definition Classes
    DriverDataSource
  12. var driverObject: Driver

    Definition Classes
    DriverDataSource
  13. def ensuring(cond: (DatabaseUrlDataSource) ⇒ Boolean, msg: ⇒ Any): DatabaseUrlDataSource

    Implicit information
    This member is added by an implicit conversion from DatabaseUrlDataSource to Ensuring[DatabaseUrlDataSource] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: (DatabaseUrlDataSource) ⇒ Boolean): DatabaseUrlDataSource

    Implicit information
    This member is added by an implicit conversion from DatabaseUrlDataSource to Ensuring[DatabaseUrlDataSource] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean, msg: ⇒ Any): DatabaseUrlDataSource

    Implicit information
    This member is added by an implicit conversion from DatabaseUrlDataSource to Ensuring[DatabaseUrlDataSource] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean): DatabaseUrlDataSource

    Implicit information
    This member is added by an implicit conversion from DatabaseUrlDataSource to Ensuring[DatabaseUrlDataSource] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from DatabaseUrlDataSource to StringFormat[DatabaseUrlDataSource] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  21. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  22. def getConnection(username: String, password: String): Connection

    Definition Classes
    DriverDataSource → DataSource
  23. def getConnection(): Connection

    Definition Classes
    DriverDataSource → DataSource
  24. def getDeregisterDriver(): Boolean

    Definition Classes
    DriverDataSource
  25. def getDriver: String

    Definition Classes
    DriverDataSource
  26. def getDriverClassName(): String

    Definition Classes
    DriverDataSource
  27. def getLogWriter(): PrintWriter

    Definition Classes
    DriverDataSource → CommonDataSource
  28. def getLoginTimeout(): Int

    Definition Classes
    DriverDataSource → CommonDataSource
  29. def getParentLogger(): Logger

    Definition Classes
    DriverDataSource → CommonDataSource
  30. def getPassword(): String

    Definition Classes
    DriverDataSource
  31. def getProperties(): Properties

    Definition Classes
    DriverDataSource
  32. def getUrl(): String

    Definition Classes
    DriverDataSource
  33. def getUser(): String

    Definition Classes
    DriverDataSource
  34. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  35. def init: Unit

  36. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  37. def isWrapperFor(iface: Class[_]): Boolean

    Definition Classes
    DriverDataSource → Wrapper
  38. lazy val logger: SlickLogger

    Attributes
    protected[this]
    Definition Classes
    Logging
  39. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  42. var password: String

    Definition Classes
    DriverDataSource
  43. var properties: Properties

    Definition Classes
    DriverDataSource
  44. def setDeregisterDriver(arg0: Boolean): Unit

    Definition Classes
    DriverDataSource
  45. def setDriver(s: String): Unit

    Definition Classes
    DriverDataSource
  46. def setDriverClassName(arg0: String): Unit

    Definition Classes
    DriverDataSource
  47. def setLogWriter(out: PrintWriter): Unit

    Definition Classes
    DriverDataSource → CommonDataSource
  48. def setLoginTimeout(seconds: Int): Unit

    Definition Classes
    DriverDataSource → CommonDataSource
  49. def setPassword(arg0: String): Unit

    Definition Classes
    DriverDataSource
  50. def setProperties(arg0: Properties): Unit

    Definition Classes
    DriverDataSource
  51. def setUrl(arg0: String): Unit

    Definition Classes
    DriverDataSource
  52. def setUser(arg0: String): Unit

    Definition Classes
    DriverDataSource
  53. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  54. def toString(): String

    Definition Classes
    AnyRef → Any
  55. def unwrap[T](iface: Class[T]): T

    Definition Classes
    DriverDataSource → Wrapper
  56. var url: String

    Definition Classes
    DriverDataSource
  57. var user: String

    Definition Classes
    DriverDataSource
  58. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  61. def [B](y: B): (DatabaseUrlDataSource, B)

    Implicit information
    This member is added by an implicit conversion from DatabaseUrlDataSource to ArrowAssoc[DatabaseUrlDataSource] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from DriverDataSource

Inherited from Logging

Inherited from Closeable

Inherited from AutoCloseable

Inherited from DataSource

Inherited from Wrapper

Inherited from CommonDataSource

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from DatabaseUrlDataSource to any2stringadd[DatabaseUrlDataSource]

Inherited by implicit conversion StringFormat from DatabaseUrlDataSource to StringFormat[DatabaseUrlDataSource]

Inherited by implicit conversion Ensuring from DatabaseUrlDataSource to Ensuring[DatabaseUrlDataSource]

Inherited by implicit conversion ArrowAssoc from DatabaseUrlDataSource to ArrowAssoc[DatabaseUrlDataSource]

Ungrouped