implicit object Parser extends RowParser[Placeholder]
- Source
- Macro.scala
- Alphabetic
- By Inheritance
- Parser
- RowParser
- Function1
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
*: ResultSetParser[List[Placeholder]]
Returns possibly empty list parsed from result.
Returns possibly empty list parsed from result.
val price = 125 SQL"SELECT name FROM item WHERE price < \$price".as(scalar[String].*)
- Definition Classes
- RowParser
-
def
+: ResultSetParser[List[Placeholder]]
Returns non empty list parse from result, or raise error if there is no result.
Returns non empty list parse from result, or raise error if there is no result.
import anorm.SQL import anorm.SqlParser.str val parser = str("title") ~ str("descr") SQL("SELECT title, descr FROM pages").as(parser.+) // at least 1 page
- Definition Classes
- RowParser
-
def
<~[B](p: RowParser[B]): RowParser[Placeholder]
Combines this current parser with the one given as argument
p
, if and only if the current parser can first successfully parse a row, without keeping the values of the parserp
.Combines this current parser with the one given as argument
p
, if and only if the current parser can first successfully parse a row, without keeping the values of the parserp
.import anorm.{ SQL, SqlParser }, SqlParser.{ int, str } val Int = SQL("SELECT * FROM test"). as((int("id") <~ str("val")).single) // row has to have an int column 'id' and a string 'val' one, // keeping only 'id' in result
- Definition Classes
- RowParser
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
>>[B](f: (Placeholder) ⇒ RowParser[B]): RowParser[B]
Alias for flatMap
-
def
?: RowParser[Option[Placeholder]]
Returns a row parser for optional column, that will turn missing or null column as None.
Returns a row parser for optional column, that will turn missing or null column as None.
- Definition Classes
- RowParser
-
def
andThen[A](g: (SqlResult[Placeholder]) ⇒ A): (Row) ⇒ A
- Definition Classes
- Function1
- Annotations
- @unspecialized()
-
def
apply(row: Row): Success[Placeholder]
- Definition Classes
- Parser → Function1
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
collect[B](otherwise: String)(f: PartialFunction[Placeholder, B]): RowParser[B]
Returns parser which collects information from already parsed row data using
f
.Returns parser which collects information from already parsed row data using
f
.- otherwise
Message returned as error if nothing can be collected using
f
.- f
Collecting function
- Definition Classes
- RowParser
-
def
compose[A](g: (A) ⇒ Row): (A) ⇒ SqlResult[Placeholder]
- Definition Classes
- Function1
- Annotations
- @unspecialized()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
flatMap[B](k: (Placeholder) ⇒ RowParser[B]): RowParser[B]
- Definition Classes
- RowParser
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
map[B](f: (Placeholder) ⇒ B): RowParser[B]
Returns a parser that will apply given function
f
to the result of this first parser.Returns a parser that will apply given function
f
to the result of this first parser. If the current parser is not successful, the new one will return encountered Error.- f
Function applied on the successful parser result
import anorm.{ RowParser, SQL, SqlParser } val parser: RowParser[Int] = SqlParser.str("col").map(_.length) // Prepares a parser that first get 'col' string value, // and then returns the length of that
- Definition Classes
- RowParser
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
single: ResultSetParser[Placeholder]
Returns a result set parser expecting exactly one row to parse.
Returns a result set parser expecting exactly one row to parse.
val b: Boolean = SQL("SELECT flag FROM Test WHERE id = :id"). on("id" -> 1).as(scalar[Boolean].single)
- Definition Classes
- RowParser
- See also
#singleOpt
-
def
singleOpt: ResultSetParser[Option[Placeholder]]
Returns a result set parser for none or one parsed row.
Returns a result set parser for none or one parsed row.
val name: Option[String] = SQL("SELECT name FROM Country WHERE lang = :lang") .on("lang" -> "notFound").as(scalar[String].singleOpt)
- Definition Classes
- RowParser
- val success: Success[Placeholder]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- Function1 → AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
|[B >: Placeholder](p: RowParser[B]): RowParser[B]
- Definition Classes
- RowParser
-
def
~[B](p: RowParser[B]): RowParser[~[Placeholder, B]]
Combines this parser on the left of the parser
p
given as argument.Combines this parser on the left of the parser
p
given as argument.- p
Parser on the right
val populations: List[String ~ Int] = SQL("SELECT * FROM Country").as((str("name") ~ int("population")).*)
- Definition Classes
- RowParser
-
def
~>[B](p: RowParser[B]): RowParser[B]
Combines this current parser with the one given as argument
p
, if and only if the current parser can first/on left side successfully parse a row, without keeping these values in parsed result.Combines this current parser with the one given as argument
p
, if and only if the current parser can first/on left side successfully parse a row, without keeping these values in parsed result.import anorm.{ SQL, SqlParser }, SqlParser.{ int, str } val String = SQL("SELECT * FROM test"). as((int("id") ~> str("val")).single) // row has to have an int column 'id' and a string 'val' one, // keeping only 'val' in result
- Definition Classes
- RowParser