Packages

t

scalikejdbc

AllOutputDecisionsUnsupported

trait AllOutputDecisionsUnsupported[Z, E <: WithExtractor] extends SQL[Z, E]

All output decisions are unsupported by default.

Z

return type

E

extractor constraint

Source
RelationalSQL.scala
Linear Supertypes
SQL[Z, E], Extractor[Z], AnyRef, Any
Known Subclasses
OneToManies10SQL, OneToManies10SQLToCollection, OneToManies10SQLToList, OneToManies10SQLToOption, OneToManies10SQLToTraversable, OneToManies11SQL, OneToManies11SQLToCollection, OneToManies11SQLToList, OneToManies11SQLToOption, OneToManies11SQLToTraversable, OneToManies12SQL, OneToManies12SQLToCollection, OneToManies12SQLToList, OneToManies12SQLToOption, OneToManies12SQLToTraversable, OneToManies13SQL, OneToManies13SQLToCollection, OneToManies13SQLToList, OneToManies13SQLToOption, OneToManies13SQLToTraversable, OneToManies14SQL, OneToManies14SQLToCollection, OneToManies14SQLToList, OneToManies14SQLToOption, OneToManies14SQLToTraversable, OneToManies15SQL, OneToManies15SQLToCollection, OneToManies15SQLToList, OneToManies15SQLToOption, OneToManies15SQLToTraversable, OneToManies16SQL, OneToManies16SQLToCollection, OneToManies16SQLToList, OneToManies16SQLToOption, OneToManies16SQLToTraversable, OneToManies17SQL, OneToManies17SQLToCollection, OneToManies17SQLToList, OneToManies17SQLToOption, OneToManies17SQLToTraversable, OneToManies18SQL, OneToManies18SQLToCollection, OneToManies18SQLToList, OneToManies18SQLToOption, OneToManies18SQLToTraversable, OneToManies19SQL, OneToManies19SQLToCollection, OneToManies19SQLToList, OneToManies19SQLToOption, OneToManies19SQLToTraversable, OneToManies20SQL, OneToManies20SQLToCollection, OneToManies20SQLToList, OneToManies20SQLToOption, OneToManies20SQLToTraversable, OneToManies21SQL, OneToManies21SQLToCollection, OneToManies21SQLToList, OneToManies21SQLToOption, OneToManies21SQLToTraversable, OneToManies2SQL, OneToManies2SQLToOption, OneToManies2SQLToTraversable, OneToManies3SQL, OneToManies3SQLToCollection, OneToManies3SQLToList, OneToManies3SQLToOption, OneToManies3SQLToTraversable, OneToManies4SQL, OneToManies4SQLToCollection, OneToManies4SQLToList, OneToManies4SQLToOption, OneToManies4SQLToTraversable, OneToManies5SQL, OneToManies5SQLToCollection, OneToManies5SQLToList, OneToManies5SQLToOption, OneToManies5SQLToTraversable, OneToManies6SQL, OneToManies6SQLToCollection, OneToManies6SQLToList, OneToManies6SQLToOption, OneToManies6SQLToTraversable, OneToManies7SQL, OneToManies7SQLToCollection, OneToManies7SQLToList, OneToManies7SQLToOption, OneToManies7SQLToTraversable, OneToManies8SQL, OneToManies8SQLToCollection, OneToManies8SQLToList, OneToManies8SQLToOption, OneToManies8SQLToTraversable, OneToManies9SQL, OneToManies9SQLToCollection, OneToManies9SQLToList, OneToManies9SQLToOption, OneToManies9SQLToTraversable, OneToManySQL, OneToManySQLToCollection, OneToManySQLToList, OneToManySQLToOption, OneToManySQLToTraversable, OneToOneSQL, OneToOneSQLToCollection, OneToOneSQLToList, OneToOneSQLToOption, OneToOneSQLToTraversable, OneToXSQL
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AllOutputDecisionsUnsupported
  2. SQL
  3. Extractor
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type SQLWithExtractor = SQL[Z, HasExtractor]
    Definition Classes
    SQL
  2. type ThisSQL = SQL[Z, E]
    Definition Classes
    SQL

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def batch(parameters: Seq[Any]*): SQLBatch

    Binds parameters for batch

    Binds parameters for batch

    parameters

    parameters

    returns

    SQL for batch

    Definition Classes
    SQL
  6. def batchAndReturnGeneratedKey(generatedKeyName: String, parameters: Seq[Any]*): SQLBatchWithGeneratedKey

    Binds parameters for batch

    Binds parameters for batch

    generatedKeyName

    generated key name

    parameters

    parameters

    returns

    SQL for batch

    Definition Classes
    SQL
  7. def batchAndReturnGeneratedKey(parameters: Seq[Any]*): SQLBatchWithGeneratedKey

    Binds parameters for batch

    Binds parameters for batch

    parameters

    parameters

    returns

    SQL for batch

    Definition Classes
    SQL
  8. def batchByName(parameters: Seq[(Symbol, Any)]*): SQLBatch

    Binds parameters for batch

    Binds parameters for batch

    parameters

    parameters

    returns

    SQL for batch

    Definition Classes
    SQL
  9. def bind(parameters: Any*): SQL[Z, E]

    Binds parameters to SQL template in order.

    Binds parameters to SQL template in order.

    parameters

    parameters

    returns

    SQL instance

    Definition Classes
    SQL
  10. def bindByName(parametersByName: (Symbol, Any)*): SQL[Z, E]

    Binds named parameters to SQL template.

    Binds named parameters to SQL template.

    parametersByName

    named parameters

    returns

    SQL instance

    Definition Classes
    SQL
  11. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def collection: SQLToCollection[Z, E]

    Set execution type as collection.

    Set execution type as collection.

    returns

    SQL instance

    Definition Classes
    AllOutputDecisionsUnsupportedSQL
  13. def dbSettingSettings(settings: SettingsProvider): AllOutputDecisionsUnsupported.this.type
    Definition Classes
    SQL
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  16. def execute(): SQLExecution

    Set execution type as execute

    Set execution type as execute

    returns

    SQL instance

    Definition Classes
    SQL
  17. def executeUpdate(): SQLUpdate

    Set execution type as executeUpdate

    Set execution type as executeUpdate

    returns

    SQL instance

    Definition Classes
    SQL
  18. def executeUpdateWithFilters(before: (PreparedStatement) ⇒ Unit, after: (PreparedStatement) ⇒ Unit): SQLUpdate

    Set execution type as executeUpdate with filters

    Set execution type as executeUpdate with filters

    before

    before filter

    after

    after filter

    returns

    SQL instance

    Definition Classes
    SQL
  19. def executeWithFilters(before: (PreparedStatement) ⇒ Unit, after: (PreparedStatement) ⇒ Unit): SQLExecution

    Set execution type as execute with filters

    Set execution type as execute with filters

    before

    before filter

    after

    after filter

    returns

    SQL instance

    Definition Classes
    SQL
  20. def extractor: (WrappedResultSet) ⇒ Z
    Definition Classes
    SQL → Extractor
  21. def fetchSize: Option[Int]

    Returns fetchSize for this query.

    Returns fetchSize for this query.

    returns

    fetch size

    Definition Classes
    SQL
  22. def fetchSize(fetchSize: Option[Int]): AllOutputDecisionsUnsupported.this.type
    Definition Classes
    SQL
  23. def fetchSize(fetchSize: Int): AllOutputDecisionsUnsupported.this.type

    Set fetchSize for this query.

    Set fetchSize for this query.

    fetchSize

    fetch size

    returns

    this

    Definition Classes
    SQL
  24. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  25. def first(): SQLToOption[Z, E]

    Set execution type as first.

    Set execution type as first.

    returns

    SQL instance

    Definition Classes
    AllOutputDecisionsUnsupportedSQL
  26. def foldLeft[A](z: A)(op: (A, WrappedResultSet) ⇒ A)(implicit session: DBSession): A

    folding into one value

    folding into one value

    z

    initial value

    op

    operation

    Definition Classes
    SQL
  27. def foreach(op: (WrappedResultSet) ⇒ Unit)(implicit session: DBSession): Unit

    Apply the operation to all elements of result set

    Apply the operation to all elements of result set

    op

    operation

    Definition Classes
    SQL
  28. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  29. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  30. def headOption(): SQLToOption[Z, E]

    Same as #first.

    Same as #first.

    returns

    SQL instance

    Definition Classes
    AllOutputDecisionsUnsupportedSQL
  31. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  32. def list(): SQLToList[Z, E]

    Set execution type as list.

    Set execution type as list.

    returns

    SQL instance

    Definition Classes
    AllOutputDecisionsUnsupportedSQL
  33. def map[A](f: (WrappedResultSet) ⇒ A): SQL[A, HasExtractor]

    Maps values from each scalikejdbc.WrappedResultSet object.

    Maps values from each scalikejdbc.WrappedResultSet object.

    A

    return type

    f

    extractor function

    returns

    SQL instance

    Definition Classes
    SQL
  34. val message: String
  35. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  36. final def notify(): Unit
    Definition Classes
    AnyRef
  37. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  38. def one[Z](f: (WrappedResultSet) ⇒ Z): OneToXSQL[Z, E, Z]

    Returns One-to-X API builder.

    Returns One-to-X API builder.

    Definition Classes
    SQL
  39. final lazy val parameters: Seq[Any]
    Definition Classes
    SQL
  40. def queryTimeout: Option[Int]

    Returns queryTimeout for this query.

    Returns queryTimeout for this query.

    returns

    query timeout seconds

    Definition Classes
    SQL
  41. def queryTimeout(seconds: Option[Int]): AllOutputDecisionsUnsupported.this.type
    Definition Classes
    SQL
  42. def queryTimeout(seconds: Int): AllOutputDecisionsUnsupported.this.type

    Set queryTimeout for this query.

    Set queryTimeout for this query.

    seconds

    query timeout seconds

    returns

    this

    Definition Classes
    SQL
  43. def single(): SQLToOption[Z, E]

    Set execution type as single.

    Set execution type as single.

    returns

    SQL instance

    Definition Classes
    AllOutputDecisionsUnsupportedSQL
  44. val statement: String
    Definition Classes
    SQL
  45. def stripMargin: SQL[Z, E]
    Definition Classes
    SQL
  46. def stripMargin(marginChar: Char): SQL[Z, E]
    Definition Classes
    SQL
  47. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  48. def tags: Seq[String]

    Returns tags for this SQL object.

    Returns tags for this SQL object.

    returns

    tags

    Definition Classes
    SQL
  49. def tags(tags: String*): AllOutputDecisionsUnsupported.this.type

    Appends tags to this SQL object.

    Appends tags to this SQL object.

    tags

    tags

    returns

    this

    Definition Classes
    SQL
  50. def toCollection: SQLToCollection[Z, E]

    Same as #collection

    Same as #collection

    returns

    SQL instance

    Definition Classes
    AllOutputDecisionsUnsupportedSQL
  51. def toList(): SQLToList[Z, E]

    Same as #list

    Same as #list

    returns

    SQL instance

    Definition Classes
    AllOutputDecisionsUnsupportedSQL
  52. def toMap(): SQL[Map[String, Any], HasExtractor]

    Maps values as a Map value from each scalikejdbc.WrappedResultSet object.

    Maps values as a Map value from each scalikejdbc.WrappedResultSet object.

    returns

    SQL instance

    Definition Classes
    SQL
  53. def toOption(): SQLToOption[Z, E]

    Same as #single.

    Same as #single.

    returns

    SQL instance

    Definition Classes
    AllOutputDecisionsUnsupportedSQL
  54. def toString(): String
    Definition Classes
    AnyRef → Any
  55. def toTraversable(): SQLToTraversable[Z, E]

    Same as #traversable.

    Same as #traversable.

    returns

    SQL instance

    Definition Classes
    AllOutputDecisionsUnsupportedSQL
  56. def traversable(): SQLToTraversable[Z, E]

    Set execution type as traversable.

    Set execution type as traversable.

    returns

    SQL instance

    Definition Classes
    AllOutputDecisionsUnsupportedSQL
  57. def update(): SQLUpdate

    Set execution type as executeUpdate

    Set execution type as executeUpdate

    returns

    SQL instance

    Definition Classes
    SQL
  58. def updateAndReturnGeneratedKey(index: Int): SQLUpdateWithGeneratedKey
    Definition Classes
    SQL
  59. def updateAndReturnGeneratedKey(name: String): SQLUpdateWithGeneratedKey
    Definition Classes
    SQL
  60. def updateAndReturnGeneratedKey(): SQLUpdateWithGeneratedKey

    Set execution type as updateAndReturnGeneratedKey

    Set execution type as updateAndReturnGeneratedKey

    returns

    SQL instance

    Definition Classes
    SQL
  61. def updateWithFilters(before: (PreparedStatement) ⇒ Unit, after: (PreparedStatement) ⇒ Unit): SQLUpdate

    Set execution type as executeUpdate with filters

    Set execution type as executeUpdate with filters

    before

    before filter

    after

    after filter

    returns

    SQL instance

    Definition Classes
    SQL
  62. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  63. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  64. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  65. def withExtractor[B](f: (WrappedResultSet) ⇒ B): SQL[B, HasExtractor]
    Attributes
    protected
    Definition Classes
    SQL
  66. def withParameters(params: Seq[Any]): SQL[Z, E]
    Attributes
    protected
    Definition Classes
    SQL
  67. def withStatementAndParameters(state: String, params: Seq[Any]): SQL[Z, E]
    Attributes
    protected
    Definition Classes
    SQL

Inherited from SQL[Z, E]

Inherited from Extractor[Z]

Inherited from AnyRef

Inherited from Any

Ungrouped