JobDBAll

object JobDBAll extends SQLSyntaxSupport[JobDBAll]
Companion
class
trait Product
trait Mirror
trait SQLSyntaxSupport[JobDBAll]
class Object
trait Matchable
class Any

Type members

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from
Mirror

Value members

Concrete methods

def apply(rs: WrappedResultSet): JobDBAll

Inherited methods

def as(provider: QuerySQLSyntaxProvider[SQLSyntaxSupport[JobDBAll], JobDBAll]): TableAsAliasSQLSyntax

Returns table name and alias name part in SQL. If alias name and table name are same, alias name will be skipped.

Returns table name and alias name part in SQL. If alias name and table name are same, alias name will be skipped.

 sql"select ${m.result.*} from ${Member.as(m)}"
Inherited from
SQLSyntaxSupport
def autoSession: DBSession

Auto session for current connection pool.

Auto session for current connection pool.

Inherited from
SQLSyntaxSupport
def clearLoadedColumns(): Unit

Clears column names loaded from JDBC metadata.

Clears column names loaded from JDBC metadata.

Inherited from
SQLSyntaxSupport
def column: ColumnName[JobDBAll]

Returns ColumnName provider for this (expected to use for insert/update queries).

Returns ColumnName provider for this (expected to use for insert/update queries).

Inherited from
SQLSyntaxSupport
def columnNames: Seq[String]

If you prefer columnNames than columns, override this method to customize.

If you prefer columnNames than columns, override this method to customize.

Inherited from
SQLSyntaxSupport
def columns: Seq[String]

Column names for this table (default: column names that are loaded from JDBC metadata).

Column names for this table (default: column names that are loaded from JDBC metadata).

Inherited from
SQLSyntaxSupport

Connection Pool Name. If you use NamedDB, you must override this method.

Connection Pool Name. If you use NamedDB, you must override this method.

Inherited from
SQLSyntaxSupport

Delimiter for alias names in SQL.

Delimiter for alias names in SQL.

Inherited from
SQLSyntaxSupport
def forceUpperCase: Boolean

True if you need forcing upper column names in SQL.

True if you need forcing upper column names in SQL.

Inherited from
SQLSyntaxSupport
def nameConverters: Map[String, String]

Rule to convert field names to column names.

Rule to convert field names to column names.

 override val nameConverters = Map("^serviceCode$" -> "service_cd")
Inherited from
SQLSyntaxSupport
def schemaName: Option[String]

Schema name if exists.

Schema name if exists.

Inherited from
SQLSyntaxSupport
def syntax(name: String): QuerySQLSyntaxProvider[SQLSyntaxSupport[JobDBAll], JobDBAll]

Returns SQLSyntax provider for this.

Returns SQLSyntax provider for this.

 val m = Member.syntax("m")
 sql"select ${m.result.*} from ${Member as m}".map(Member(m.resultName)).list.apply()
 // select m.id as i_on_m, m.name as n_on_m from member m
Inherited from
SQLSyntaxSupport
def syntax: QuerySQLSyntaxProvider[SQLSyntaxSupport[JobDBAll], JobDBAll]

Returns SQLSyntax provider for this.

Returns SQLSyntax provider for this.

 val m = Member.syntax
 sql"select ${m.result.*} from ${Member as m}".map(Member(m.resultName)).list.apply()
 // select member.id as i_on_member, member.name as n_on_member from member
Inherited from
SQLSyntaxSupport
def table: TableDefSQLSyntax

scalikejdbc.interpolation.SQLSyntax value for table name.

scalikejdbc.interpolation.SQLSyntax value for table name.

Notice: Table name is specified with a String value which might be an input value.

Inherited from
SQLSyntaxSupport

Table name with schema name.

Table name with schema name.

Inherited from
SQLSyntaxSupport
def tableTypes: Array[String]

If you need some exotic table types like MATERIALIZED VIEW from PostgreSQL, override this method.

If you need some exotic table types like MATERIALIZED VIEW from PostgreSQL, override this method.

Inherited from
SQLSyntaxSupport

True if you need shortening alias names in SQL.

True if you need shortening alias names in SQL.

Inherited from
SQLSyntaxSupport

True if you need to convert field names to snake_case column names in SQL.

True if you need to convert field names to snake_case column names in SQL.

Inherited from
SQLSyntaxSupport

Concrete fields

override
val tableName: String