Packages

o

net.liftweb.mapper

Schemifier

object Schemifier extends Loggable

Given a list of MetaMappers, make sure the database has the right schema

  • Make sure all the tables exists
  • Make sure the columns in the tables are correct
  • Create the indexes
  • Create the foreign keys
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Schemifier
  2. Loggable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
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. def destroyTables_!!(dbId: ConnectionIdentifier, cnt: Int, logFunc: (⇒ AnyRef) ⇒ Unit, stables: List[BaseMetaMapper]): Unit
  7. def destroyTables_!!(dbId: ConnectionIdentifier, logFunc: (⇒ AnyRef) ⇒ Unit, stables: BaseMetaMapper*): Unit
  8. def destroyTables_!!(logFunc: (⇒ AnyRef) ⇒ Unit, stables: BaseMetaMapper*): Unit
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  13. def getDefaultSchemaName(connection: SuperConnection): String

    Retrieves schema name where the unqualified db objects are searched.

  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  15. def infoF(msg: ⇒ AnyRef): Unit

    Convenience function to be passed to schemify.

    Convenience function to be passed to schemify. Will log executed statements at the info level using Schemifier's logger

  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. val logger: Logger
    Attributes
    protected
    Definition Classes
    Loggable
    Annotations
    @transient()
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def neverF(msg: ⇒ AnyRef): Unit

    Convenience function to be passed to schemify.

    Convenience function to be passed to schemify. Will not log any executed statements

  20. final def notify(): Unit
    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  22. def schemify(performWrite: Boolean, structureOnly: Boolean, logFunc: (⇒ AnyRef) ⇒ Unit, dbId: ConnectionIdentifier, stables: BaseMetaMapper*): List[String]

    Modify database specified in dbId so it matches the structure specified in the MetaMappers

    Modify database specified in dbId so it matches the structure specified in the MetaMappers

    performWrite

    if false, will not write any changes to the database, only collect them

    structureOnly

    if true, will only check tables and columns, not indexes and constraints. Useful if schema is maintained outside Lift, but still needs structure to be in sync

    logFunc

    A function that will be called for each statement being executed if performWrite == true

    dbId

    The ConnectionIdentifier to be used

    stables

    The MetaMapper instances to check

    returns

    The list of statements needed to bring the database in a consistent state. This list is created even if performWrite=false

  23. def schemify(performWrite: Boolean, structureOnly: Boolean, logFunc: (⇒ AnyRef) ⇒ Unit, stables: BaseMetaMapper*): List[String]
  24. def schemify(performWrite: Boolean, logFunc: (⇒ AnyRef) ⇒ Unit, dbId: ConnectionIdentifier, stables: BaseMetaMapper*): List[String]
  25. def schemify(performWrite: Boolean, logFunc: (⇒ AnyRef) ⇒ Unit, stables: BaseMetaMapper*): List[String]
  26. implicit def superToRegConnection(sc: SuperConnection): Connection
  27. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Loggable

Inherited from AnyRef

Inherited from Any

Ungrouped