Packages

trait WaspPostgresDB extends WaspDB with PostgresDBHelper

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WaspPostgresDB
  2. PostgresDBHelper
  3. Logging
  4. ConnectionInfoProvider
  5. ConnectionSupport
  6. WaspDB
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def close(): Unit
    Definition Classes
    WaspPostgresDB → WaspDB
  2. abstract def createTable()(implicit tableDefinition: TableDefinition[_, _]): Unit
  3. abstract def deleteByPrimaryKey[T, K](primaryKey: K)(implicit tableDefinition: TableDefinition[T, K]): Unit
  4. abstract def getAll[T, K]()(implicit tableDefinition: TableDefinition[T, K]): Seq[T]
  5. abstract def getBy[T, K](condition: Array[(String, Any)], sortCondition: Option[String] = None, limit: Option[Int] = None)(implicit tableDefinition: TableDefinition[T, K]): Seq[T]
  6. abstract def getByPrimaryKey[T, K](primaryKey: K)(implicit tableDefinition: TableDefinition[T, K]): Option[T]
  7. abstract def getDriver: String
    Attributes
    protected
    Definition Classes
    ConnectionInfoProvider
  8. abstract def getPassword: String
    Attributes
    protected
    Definition Classes
    ConnectionInfoProvider
  9. abstract def getPoolSize: Int
    Attributes
    protected
    Definition Classes
    ConnectionInfoProvider
  10. abstract def getUrl: String
    Attributes
    protected
    Definition Classes
    ConnectionInfoProvider
  11. abstract def getUser: String
    Attributes
    protected
    Definition Classes
    ConnectionInfoProvider
  12. abstract def insert[T, K](obj: T)(implicit tableDefinition: TableDefinition[T, K]): Unit
  13. abstract def insertIfNotExists[T, K](obj: T)(implicit table: TableDefinition[T, K]): Unit
  14. abstract def insertReturning[T, K, R](obj: T, columnResult: Array[String], mapperResultSet: (ResultSet) ⇒ R)(implicit table: TableDefinition[T, K]): Seq[R]
  15. abstract def updateByPrimaryKey[T, K](obj: T)(implicit tableDefinition: TableDefinition[T, K]): Unit
  16. abstract def upsert[T, K](obj: T)(implicit table: TableDefinition[T, K]): Unit

Concrete 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[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  6. def closePool(): Unit
    Attributes
    protected
    Definition Classes
    ConnectionSupport
  7. def convertToJson(json: JsValue): PGobject
    Definition Classes
    PostgresDBHelper
  8. def delete(table: String, whereCondition: Option[Array[(String, Any)]] = None): Unit
    Attributes
    protected
    Definition Classes
    PostgresDBHelper
  9. def dropTable(table: String): Unit
    Attributes
    protected
    Definition Classes
    PostgresDBHelper
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def execute(updates: String*): Unit
    Attributes
    protected
    Definition Classes
    PostgresDBHelper
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. def getConnection(): Connection
    Attributes
    protected
    Definition Classes
    ConnectionSupport
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def insert[T](table: String, obj: T)(mapper: (T) ⇒ Array[(String, Any)]): Unit
    Attributes
    protected
    Definition Classes
    PostgresDBHelper
  17. def insertReturning[T, R](table: String, obj: T, columnsResult: Array[String])(mapperFromModel: (T) ⇒ Array[(String, Any)], mapperFromResultSet: (ResultSet) ⇒ R): Seq[R]
    Attributes
    protected
    Definition Classes
    PostgresDBHelper
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. val logger: WaspLogger
    Attributes
    protected
    Definition Classes
    Logging
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. def updateBy[T](table: String, obj: T, whereCondition: Array[(String, Any)])(mapper: (T) ⇒ Array[(String, Any)]): Unit
    Attributes
    protected
    Definition Classes
    PostgresDBHelper
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from PostgresDBHelper

Inherited from Logging

Inherited from ConnectionInfoProvider

Inherited from ConnectionSupport

Inherited from WaspDB

Inherited from AnyRef

Inherited from Any

Ungrouped