com.outr.query

Datastore

trait Datastore extends Listenable with Logging

Linear Supertypes
Logging, LoggingCore, Listenable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Datastore
  2. Logging
  3. LoggingCore
  4. Listenable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def createTableExtras(table: Table, b: StringBuilder): Unit

  2. abstract def createTableSQL(ifNotExist: Boolean, table: Table): String

  3. abstract def dataSource: DataSource

  4. abstract def exec(delete: Delete): Int

  5. abstract def exec(update: Update): Int

  6. abstract def exec(merge: Merge): Int

  7. abstract def exec(insert: Insert): Iterator[Int]

  8. abstract def exec(query: Query): QueryResultsIterator

  9. abstract def sqlFromQuery(query: Query): (String, List[Any])

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

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

    Definition Classes
    Any
  6. def active[T](f: ⇒ T): T

  7. def add(table: Table): Any

    Attributes
    protected[com.outr.query]
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def asynchronousLogging: Boolean

    Attributes
    protected
    Definition Classes
    LoggingCore
  10. def cleanup(thread: Thread, session: DatastoreSession): Unit

    Attributes
    protected[com.outr.query]
  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def create(ifNotExist: Boolean = true): Boolean

  13. def createSession(): DatastoreSession

    Attributes
    protected
  14. def creating(): Unit

    Called when the datastore is being created for the first time.

    Called when the datastore is being created for the first time. This does not mean the tables are being created but just the datastore.

  15. def ddl(ifNotExist: Boolean = true): String

  16. def debug(message: ⇒ Any): Unit

    Definition Classes
    Logging
  17. def delete(table: Table): Delete

  18. def dispose(): Unit

  19. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  21. def error(message: ⇒ Any, t: Throwable): Unit

    Definition Classes
    Logging
  22. def error(message: ⇒ Any): Unit

    Definition Classes
    Logging
  23. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  26. def info(message: ⇒ Any): Unit

    Definition Classes
    Logging
  27. def insert(values: ColumnValue[_]*): Option[Int]

  28. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  29. def listen[Event, Response, Result](name: String, priority: Priority, modes: ListenMode*)(f: (Event) ⇒ Response)(implicit eventManifest: Manifest[Event]): FunctionalListener[Event, Response]

    Definition Classes
    Listenable
  30. val listeners: Listeners

    Definition Classes
    Listenable
  31. def log(level: Level, message: ⇒ Any): Unit

    Definition Classes
    LoggingCore
  32. val logger: InnerLogging

    Definition Classes
    LoggingCore
  33. def loggingClassName: String

    Attributes
    protected
    Definition Classes
    LoggingCore
  34. def merge(key: Column[_], values: ColumnValue[_]*): Int

  35. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  38. def select(expressions: List[SelectExpression]): Query

  39. def select(expressions: SelectExpression*): Query

  40. def session: DatastoreSession

  41. def sessionTimeout: Double

  42. def sessions: Iterable[DatastoreSession]

  43. val sql2Value: OptionProcessor[(ColumnLike[_], Any), Any]

  44. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  45. def tableByName(tableName: String): Option[Table]

  46. def tables: Iterable[Table]

  47. implicit val thisListenable: Listenable

    Definition Classes
    Listenable
  48. def toString(): String

    Definition Classes
    AnyRef → Any
  49. def trace(message: ⇒ Any): Unit

    Definition Classes
    Logging
  50. def transaction[T](f: ⇒ T): T

    Creates a transaction for the contents of the supplied function.

    Creates a transaction for the contents of the supplied function. If an exception is thrown the contents will be rolled back to the savepoint created before the function was invoked. If no exception occurs the transaction will be committed (but only if it is not a nested transaction). Layering of transactions is supported and will defer commit until the last transaction is ended.

    T

    the return value from the function

    f

    the function to execute within the transaction

    returns

    T

  51. def update(delta: Double): Unit

    Attributes
    protected
  52. def update(values: ColumnValue[_]*): Update

  53. val updater: ScheduledFuture[_]

  54. val value2SQL: OptionProcessor[(ColumnLike[_], Any), Any]

  55. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  58. def warn(message: ⇒ Any, t: Throwable): Unit

    Definition Classes
    Logging
  59. def warn(message: ⇒ Any): Unit

    Definition Classes
    Logging

Inherited from Logging

Inherited from LoggingCore

Inherited from Listenable

Inherited from AnyRef

Inherited from Any

Ungrouped