package sql
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- case class CharacterDataType(length: Int, fixedWidth: Boolean) extends DataType with Product with Serializable
- case class DateTimeDataType(withZone: Boolean) extends DataType with Product with Serializable
- case class DecimalDataType(precision: Int, scale: Int) extends DataType with Product with Serializable
- case class FloatDataType(precision: Int) extends DataType with Product with Serializable
-
abstract
class
SqlIterator[+T] extends Iterator[T]
Specialized scala.collection.Iterator that handles the peculiarities of dealing with a JDBC ResultSet
-
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
-
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).
- case class SqlRelationColumn[G] extends Iterator[G] with Product with Serializable
- case class TimeDataType(withZone: Boolean) extends DataType with Product with Serializable
Value Members
- object BigBinaryDataType extends DataType with Product with Serializable
- object BigIntegerDataType extends DataType with Product with Serializable
- object BitDataType extends DataType with Product with Serializable
- object BooleanDataType extends DataType with Product with Serializable
- object DateDataType extends DataType with Product with Serializable
- object IntegerDataType extends DataType with Product with Serializable
- object SmallIntegerDataType extends DataType with Product with Serializable
- object TextDataType extends DataType with Product with Serializable
- object TinyIntegerDataType extends DataType with Product with Serializable