org.squeryl.internals

DatabaseAdapter

trait DatabaseAdapter extends AnyRef

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

Type Members

  1. class Zip[T] extends AnyRef

  2. class ZipIterable[T] extends AnyRef

Abstract Value Members

  1. abstract def isTableDoesNotExistException(e: SQLException): Boolean

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 aliasExport(parentOfTarget: QueryableExpressionNode, target: SelectElement): String

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def bigDecimalTypeDeclaration(precision: Int, scale: Int): String

  9. def bigDecimalTypeDeclaration: String

  10. def binaryTypeDeclaration: String

  11. def booleanTypeDeclaration: String

  12. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  13. def convertFromBooleanForJdbc(b: Boolean): Boolean

    unused at the moment, since all jdbc drivers adhere to the standard that : 1 == true, false otherwise.

    unused at the moment, since all jdbc drivers adhere to the standard that : 1 == true, false otherwise. If a new driver would not adhere to this, the call can be uncommented in method convertToJdbcValue

  14. def convertFromUuidForJdbc(u: UUID): AnyRef

  15. def convertParamsForJdbc(params: Iterable[AnyRef]): Iterable[AnyRef]

  16. def convertToBooleanForJdbc(rs: ResultSet, i: Int): Boolean

    unused for the same reason as def convertFromBooleanForJdbc (see comment)

  17. def convertToJdbcValue(r: AnyRef): AnyRef

    Converts field instances so they can be fed, and understood by JDBC will not do conversion from None/Some, so @arg r should be a java primitive type or a CustomType

  18. def convertToUuidForJdbc(rs: ResultSet, i: Int): UUID

  19. def createSequenceName(fmd: FieldMetaData): String

  20. def createStatement(conn: Connection): Statement

    Attributes
    protected
  21. def currenSession: Session

    Attributes
    protected
  22. def databaseTypeFor(c: Class[_]): String

  23. def databaseTypeFor(fmd: FieldMetaData): String

  24. def dateTypeDeclaration: String

  25. def doubleTypeDeclaration: String

  26. def dropForeignKeyStatement(foreignKeyTable: Table[_], fkName: String, session: Session): Unit

  27. def dropTable(t: Table[_]): Unit

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

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

    Definition Classes
    AnyRef → Any
  30. def exec[A](s: Session, sw: StatementWriter)(block: (Iterable[AnyRef]) ⇒ A): A

    Attributes
    protected
  31. def execFailSafeExecute(sw: StatementWriter, silenceException: (SQLException) ⇒ Boolean): Unit

    Some methods like 'dropTable' issue their statement, and will silence the exception.

    Some methods like 'dropTable' issue their statement, and will silence the exception. For example dropTable will silence when isTableDoesNotExistException(theExceptionThrown). It must be used carefully, and an exception should not be silenced unless identified.

    Attributes
    protected
  32. def executeQuery(s: Session, sw: StatementWriter): (ResultSet, PreparedStatement)

  33. def executeUpdate(s: Session, sw: StatementWriter): (Int, PreparedStatement)

  34. def executeUpdateAndCloseStatement(s: Session, sw: StatementWriter): Int

  35. def executeUpdateForInsert(s: Session, sw: StatementWriter, ps: PreparedStatement): Int

  36. def failureOfStatementRequiresRollback: Boolean

  37. def fieldAlias(n: QueryableExpressionNode, fse: FieldSelectElement): String

  38. def fillParamsInto(params: Iterable[AnyRef], s: PreparedStatement): Unit

  39. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  40. def floatTypeDeclaration: String

  41. def foreignKeyConstraintName(foreignKeyTable: Table[_], idWithinSchema: Int): String

  42. def generateAlmostUniqueSuffixWithHash(s: String): String

    This will create an probabilistically unique string of length no longer than 11 chars, it can be used to create "almost unique" names where uniqueness is not an absolute requirement, is not ,

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

    Definition Classes
    AnyRef → Any
  44. def getInsertableFields(fmd: Iterable[FieldMetaData]): Iterable[FieldMetaData]

    Attributes
    protected
  45. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  46. def intTypeDeclaration: String

  47. def isFullOuterJoinSupported: Boolean

  48. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  49. def isNotNullConstraintViolation(e: SQLException): Boolean

    Figures out from the SQLException (ex.

    Figures out from the SQLException (ex.: vendor specific error code) if it's cause is a NOT NULL constraint violation

  50. def longTypeDeclaration: String

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

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

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

    Definition Classes
    AnyRef
  54. def nvlToken: String

  55. def postCreateTable(t: Table[_], printSinkWhenWriteOnlyMode: Option[(String) ⇒ Unit]): Unit

    When @arg printSinkWhenWriteOnlyMode is not None, the adapter will not execute any statement, but only silently give it to the String=>Unit closure

  56. def postDropTable(t: Table[_]): Unit

  57. def prepareStatement(conn: Connection, statement: String): PreparedStatement

    Attributes
    protected
  58. def quoteIdentifier(s: String): String

  59. def quoteName(s: String): String

  60. implicit def string2StatementWriter(s: String): StatementWriter

  61. def stringTypeDeclaration(length: Int): String

  62. def stringTypeDeclaration: String

  63. def supportsAutoIncrementInColumnDeclaration: Boolean

  64. def supportsForeignKeyConstraints: Boolean

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

    Definition Classes
    AnyRef
  66. def timestampTypeDeclaration: String

  67. def toString(): String

    Definition Classes
    AnyRef → Any
  68. def uuidTypeDeclaration: String

  69. def viewAlias(vn: ViewExpressionNode[_]): String

  70. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  73. def writeCaseStatement(toMatch: Option[ExpressionNode], cases: Iterable[(ExpressionNode, TypedExpressionNode[_])], otherwise: TypedExpressionNode[_], sw: StatementWriter): Unit

  74. def writeCastInvocation(e: TypedExpressionNode[_], sw: StatementWriter): Unit

  75. def writeColumnDeclaration(fmd: FieldMetaData, isPrimaryKey: Boolean, schema: Schema): String

  76. def writeCompositePrimaryKeyConstraint(t: Table[_], cols: Iterable[FieldMetaData]): String

  77. def writeConcatFunctionCall(fn: FunctionNode[_], sw: StatementWriter): Unit

  78. def writeConcatOperator(left: ExpressionNode, right: ExpressionNode, sw: StatementWriter): Unit

  79. def writeCreateTable[T](t: Table[T], sw: StatementWriter, schema: Schema): Unit

  80. def writeDelete[T](t: Table[T], whereClause: Option[ExpressionNode], sw: StatementWriter): Unit

  81. def writeDropForeignKeyStatement(foreignKeyTable: Table[_], fkName: String): String

  82. def writeDropTable(tableName: String): String

  83. def writeEndOfFromHint(qen: QueryExpressionElements, sw: StatementWriter): Unit

  84. def writeEndOfQueryHint(qen: QueryExpressionElements, sw: StatementWriter): Unit

  85. def writeForeignKeyDeclaration(foreignKeyTable: Table[_], foreignKeyColumnName: String, primaryKeyTable: Table[_], primaryKeyColumnName: String, referentialAction1: Option[ReferentialAction], referentialAction2: Option[ReferentialAction], fkId: Int): String

  86. def writeIndexDeclaration(columnDefs: Seq[FieldMetaData], name: Option[String], nameOfCompositeKey: Option[String], isUnique: Boolean): String

  87. def writeInsert[T](o: T, t: Table[T], sw: StatementWriter): Unit

  88. def writeJoin(queryableExpressionNode: QueryableExpressionNode, sw: StatementWriter): Unit

  89. def writeNvlCall(left: ExpressionNode, right: ExpressionNode, sw: StatementWriter): Unit

  90. def writePaginatedQueryDeclaration(qen: QueryExpressionElements, sw: StatementWriter): Unit

  91. def writeQuery(qen: QueryExpressionElements, sw: StatementWriter, inverseOrderBy: Boolean, topHint: Option[String]): Unit

    Attributes
    protected
  92. def writeQuery(qen: QueryExpressionElements, sw: StatementWriter): Unit

  93. def writeRegexExpression(left: ExpressionNode, pattern: String, sw: StatementWriter): Unit

  94. def writeSelectElementAlias(se: SelectElement, sw: StatementWriter): Unit

  95. def writeUniquenessConstraint(t: Table[_], cols: Iterable[FieldMetaData]): String

  96. def writeUpdate(t: Table[_], us: UpdateStatement, sw: StatementWriter): Unit

  97. def writeUpdate[T](o: T, t: Table[T], sw: StatementWriter, checkOCC: Boolean): Unit

  98. def writeValue(o: AnyRef, fmd: FieldMetaData, sw: StatementWriter): String

    Attributes
    protected
  99. implicit def zipIterable[T](i: Iterable[T]): ZipIterable[T]

Inherited from AnyRef

Inherited from Any

Ungrouped