com.twitter.scalding

jdbc

package jdbc

Visibility
  1. Public
  2. All

Type Members

  1. trait ColumnDefiner extends AnyRef

  2. case class ColumnDefinition(name: ColumnName, definition: Definition) extends Product with Serializable

  3. case class ColumnName(get: String) extends Product with Serializable

  4. case class ConnectUrl(get: String) extends Product with Serializable

  5. case class ConnectionSpec(connectUrl: ConnectUrl, userName: UserName, password: Password) extends Product with Serializable

    Pass your DB credentials to this class in a preferred secure way

  6. case class Definition(get: String) extends Product with Serializable

  7. case class DriverClass(get: String) extends Product with Serializable

  8. trait DriverColumnDefiner[Type <: JdbcType] extends AnyRef

    This is a mechanism by which different databases can control and configure the way in which statements are created.

  9. trait HsqlDbDriver extends JdbcDriver

  10. sealed abstract class IsNullable extends AnyRef

  11. abstract class JDBCSource extends Source with ColumnDefiner with JdbcDriver

    Extend this source to let scalding read from or write to a database.

  12. trait JdbcDriver extends AnyRef

  13. sealed trait JdbcType extends AnyRef

  14. trait MysqlDriver extends JdbcDriver with MysqlTableCreationImplicits

  15. trait MysqlTableCreationImplicits extends AnyRef

  16. case class Password(get: String) extends Product with Serializable

  17. case class TableName(get: String) extends Product with Serializable

  18. case class UserName(get: String) extends Product with Serializable

  19. trait VerticaDriver extends JdbcDriver with VerticaTableCreationImplicits

    Old Vertica 4.

  20. trait VerticaJdbcDriver extends JdbcDriver with VerticaTableCreationImplicits

    Vertica jdbc driver (5.

  21. trait VerticaTableCreationImplicits extends AnyRef

Value Members

  1. object BIGINT extends JdbcType with Product with Serializable

  2. object BOOLEAN extends JdbcType with Product with Serializable

  3. object DATE extends JdbcType with Product with Serializable

  4. object DATETIME extends JdbcType with Product with Serializable

  5. object DOUBLE extends JdbcType with Product with Serializable

  6. object INT extends JdbcType with Product with Serializable

  7. object IsNullable

  8. object NotNullable extends IsNullable with Product with Serializable

  9. object Nullable extends IsNullable with Product with Serializable

  10. object SMALLINT extends JdbcType with Product with Serializable

  11. object TEXT extends JdbcType with Product with Serializable

  12. object TINYINT extends JdbcType with Product with Serializable

  13. object VARCHAR extends JdbcType with Product with Serializable

Ungrouped