package sql

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class CharacterDataType(length: Int, fixedWidth: Boolean) extends DataType with Product with Serializable
  2. case class DateTimeDataType(withZone: Boolean) extends DataType with Product with Serializable
  3. case class DecimalDataType(precision: Int, scale: Int) extends DataType with Product with Serializable
  4. case class FloatDataType(precision: Int) extends DataType with Product with Serializable
  5. abstract class SqlIterator[+T] extends Iterator[T]

    Specialized scala.collection.Iterator that handles the peculiarities of dealing with a JDBC ResultSet

  6. case class SqlQueryPackage(dataStore: SqlBackend, query: String, bindVars: Seq[Option[_]]) extends ColumnNameGenerator with Product with Serializable

    Wrapper for queries that produce a JDBC ResultSet

    Wrapper for queries that produce a JDBC ResultSet

    dataStore

    A edu.chop.cbmi.dataExpress.backends.SqlBackend with an open connection, ready for queries

    query

    A string representation of a SQL query, optionally with placeholder values for bind variables

    bindVars

    An optional set of values to be bound when making a prepared statement

  7. sealed case class SqlRelation[+T] extends DataTable[T] with Product with Serializable

    A edu.chop.cbmi.dataExpress.dataModels.DataTable that represents a SQL relation (either a table or the complete result of a query).

  8. case class SqlRelationColumn[G] extends Iterator[G] with Product with Serializable
  9. case class TimeDataType(withZone: Boolean) extends DataType with Product with Serializable

Value Members

  1. object BigBinaryDataType extends DataType with Product with Serializable
  2. object BigIntegerDataType extends DataType with Product with Serializable
  3. object BitDataType extends DataType with Product with Serializable
  4. object BooleanDataType extends DataType with Product with Serializable
  5. object DateDataType extends DataType with Product with Serializable
  6. object IntegerDataType extends DataType with Product with Serializable
  7. object SmallIntegerDataType extends DataType with Product with Serializable
  8. object TextDataType extends DataType with Product with Serializable
  9. object TinyIntegerDataType extends DataType with Product with Serializable

Ungrouped