Packages

object MTable extends Serializable

Source
MTable.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MTable
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def getTables: BasicStreamingAction[Vector[MTable], MTable, Read]
  2. def getTables(namePattern: String): BasicStreamingAction[Vector[MTable], MTable, Read]
  3. def getTables(cat: Option[String], schemaPattern: Option[String], namePattern: Option[String], types: Option[Seq[String]]): BasicStreamingAction[Vector[MTable], MTable, Read]

    Some DatabaseMetaData methods take arguments that are String patterns.

    Some DatabaseMetaData methods take arguments that are String patterns. These arguments all have names such as fooPattern. Within a pattern String, "%" means match any substring of 0 or more characters, and "_" means match any one character. Only metadata entries matching the search pattern are returned. If a search pattern argument is set to null, that argument's criterion will be dropped from the search.