Tagged Questions
1
vote
0answers
90 views
scala, play framework pattern type is incompatible with expected type
I have an issue with play framework and scala. My 2 Model class are below:
In here UserProfile have one Foriegn key to User Account and MyFriend hav 2 Foriegn key 1. user_Id from user profile and ...
1
vote
0answers
68 views
How do I get system time of the database in playframework?
How to get system time to database in, play framework and scala ,anorm
this format is not a possible way in scala
${new Date().format("YYYY/MM/dd:HH:MM")}
In this code the datetime format is ...
0
votes
1answer
54 views
Play, Anorm and PostgreSQL: Problems with serial columns?
I used Play 2.1.0 with anorm, Scala 2.10 and PostgreSQL (9.1, driver: 9.1-901.jdbc4). The following query worked fine in MySQL. After moving to PostgreSQL it doesn't. After entering the method, there ...
0
votes
1answer
87 views
Expose object JSON straight from database - Writing a Format[anorm.Pk[Long]]
Hello all :) I'm about 16 hours new to Scala and Play!Framework (version 2.1). I'm following this Play!2.0 tutorial with Anorm, which uses Jerkson. From what I understand, in 2.1 you can do that out ...
1
vote
1answer
99 views
Play for Scala and Anorm: cannot create a simple parser
There should be something simple here, though I'm completely missing it, since I'm noob in Scala and Play. Here's the code:
case class ExceptionInfo(ExceptionType: String, Message: String, ...
2
votes
2answers
153 views
Why the scala :_* to expand a Seq into variable-length argument list does not work in this case?
Why the scala :_* to expand a Seq into variable-length argument list does not work in this case?
and how to solve it elegantly?
import java.sql.Connection
import scalikejdbc.ConnectionPool
import ...
1
vote
1answer
135 views
Play Framework 2.0 correct way to represent a set in a query using Anorm
I am trying to return a list of results using Anorm using a query that returns matching rows for a set of ids. Eg.
select *
from example
where id in (1,2,3,4,5)
If I try
SQL(
"""
select ...
1
vote
1answer
79 views
How to run tests in clear database?
When runnning tests in PlayFramework, you expect the database to be cleared before every test (for true isolation) and evolutions to be played, but somehow that doesn't seem to be the case.
How can ...
0
votes
1answer
169 views
Play 2 Anorm and scala pattern matching
I am trying to use pattern matching when querying a mysql database from a play2 module using anorm. Code looks like this:
def test= Action {
DB.withConnection { implicit c =>
val entities ...
4
votes
2answers
336 views
Dynamic SQL Parameters with Anorm and Scala Play Framework
Is it possible to dynamically create a list for anorm's "on" method?
I have a form with optional inputs and currently I check each Option and create a list with the defined Options and am trying to ...
1
vote
2answers
180 views
Persist lists using the Play framework and Anorm
I'm currently developping a small application in Scala using the Play framework and I would like to persist a list of operations made by a user. Is is possible to store a simple list of ids ...
0
votes
1answer
39 views
[RuntimeException: SqlMappingError(No rows when expecting a single one)]
Is there a way that I can get Scala Anorm to hanlde empty row results?
I just get this error: [RuntimeException: SqlMappingError(No rows when expecting a single one)]
My method:
def ...
1
vote
1answer
176 views
Json Deserializer for Anorm
First of all, Im pretty new to Play 2 Scala. so please forgive me if this is a stupid question. Im trying to write a convert my model object to / from Json.
As per this blog ...
0
votes
1answer
129 views
Scala Anorm. Insert exception; parameter index out of range
Trying to insert user data to DB. Checked all the parameters, data is correct, but it still throw the exception
java.sql.SQLException: Parameter index out of range (1 > number of parameters, ...
3
votes
1answer
120 views
How can I use ANORM in play console?
I'd like to use ANORM to connect to db in play console, just simply test some stuff. But there's some errors when I create a DataSource
val ds=DB.getDataSource()
java.lang.RuntimeException: There is ...
1
vote
3answers
144 views
Scala anorm retrieve inserted id
I have a table with autoid for the id field. After inserting a row with anorm I'd like to retrieve the generated id. Any idea?
SQL(
"""
insert into accom ...
1
vote
1answer
164 views
Inserting multiple values into table with anorm
I want to insert multiple values into a table from a SQL query in Anorm. In the following snippet, is there a way to bind a list of usernames as values instead of just one username?
SQL("insert into ...
1
vote
1answer
128 views
Scala Anorm Why is scala complaining about result not having a trait?
I haven't seen anywhere this is done but I have the following:
abstract class Player { val user_id: Long }
case class AlivePlayer(user_id: Long, target_id: Long) extends Player
case class ...
4
votes
1answer
187 views
What SQL access layer to use for simple reading in Play-Scala?
I will be implementing a read-only web application in Play 2.1 (Scala). Since I'll only be doing reading and marshaling the data read to JSON I would like to avoid any other DSLs and mappings.
I've ...
1
vote
1answer
592 views
How to read and write Anorm object with the new JSON API in Play Framework 2.1-RC2?
I'm trying to migrate my Play 2.0.x application to Play 2.1-RC2 and stumbled upon the following problem. In my app I have a case class that looks like this:
case class Player(
playerId: Pk[Long],
...
0
votes
1answer
239 views
Scala Anorm Select Query
With the following DB script:
# Tasks schema
# --- !Ups
CREATE TABLE HashToUrl (
hash integer,
url varchar(255)
);
# --- !Downs
DROP TABLE HashToUrl;
... why do I get this error:
...
2
votes
1answer
289 views
Saving / Loading Images in Postgres using Anorm (Scala/PlayFramework 2)
I think I'm saving the image to Postgres correctly, but get unexpected results trying to load the image. I don't really know if the error is in save or load.
Here is my Anorm code for saving the ...
1
vote
1answer
237 views
Why does Anorm's executeInsert complain about converting from BigDecimal?
I am using a Derby database with Anorm in Play 2.0.2. Even though no column has a BigDecimal field, I get the following error when inserting into a table.
Execution exception [[RuntimeException: ...
1
vote
0answers
247 views
Play Anorm and SQL connection
Play 2.0 in Scala with anorm framework provides two methods to interact with the database:
def withConnection[A](name: String)(block: Connection => A): A = {
val connection = new ...
3
votes
3answers
474 views
How to add cache mechanism when using anorm in Playframework
I see anorm is not a ORM framework, it is querying data directly by SQL. For most of the application/website, we should not query the database everytime, we needs to cache the data either by SQL or ...
2
votes
0answers
149 views
anorm dynamic filters
I'm studying a little the anorm documentation (from play framework) and is not clear if it supports a common query use case: dynamic filters, that is the user fills in 2 or 3 search criteria on a 10 ...
0
votes
1answer
68 views
Play 2.0 not updated
I'm having a problem with Play 2.0 versions. I need to use anorm's new getAliased method but it's not found:
value getAliased is not a member of anorm.MetaData
Meanwhile, it was added in ...
0
votes
2answers
128 views
Can I get a Stream of results from “as” when using Anrom in the Play! Framework? [duplicate]
Possible Duplicate:
Is there an easy way to get a Stream as output of a RowParser?
When I have a statement like this when using Anorm in the Play! Framework:
def all(): List[Note] =
...
1
vote
2answers
138 views
Is there an easy way to get a Stream as output of a RowParser?
Given rowParser of type RowParser[Photo], this is how you would parse a list of rows coming from a table photo, according to the code samples I have seen so far:
def getPhotos(album: Album): ...
0
votes
1answer
184 views
MySQL Exception: Execute SQL Transaction
I am trying to commit a sql transaction to MySQL but I get myself past an MySQLSyntaxErrorException.
The code I am using is:
implicit connection =>
SQL("""
start ...
2
votes
1answer
566 views
Play 2.0 Complex join query how to parse (Anorm )
I am writing website using play 2.0 framework. And I have a problem when parsing results.
This request to mysql db gets all the links(can be several per episode) added to the database per episode ...
6
votes
2answers
398 views
Tool to automatically generate Anorm parser combinators?
I'm just getting started with Anorm and parser combinators. It seems like there is an awful lot of boilerplate code. For example, I have
case class Model(
id:Int,
field1:String,
...
0
votes
0answers
100 views
Anorm BadPath error
Im trying to do something very basic, inspired in the computer-database sample of the scala play! framework. However I keep getting this error when trying to list the entities in the index controller:
...
1
vote
1answer
400 views
how to reuse an anorm parser in playframework 2.0 with scala
I've been having a look at the computer-database sample and I noticed that in order to reuse the Computer parser, the list method uses the Computer.withCompany parser, which returns a tuple of ...
2
votes
1answer
247 views
How to insert a new row into a database and obtain the primary key as a result
I'm using Play2 with Anorm. Is there a way to execute an INSERT statement and obtain the automatically generated primary key as a result?
1
vote
1answer
168 views
How to match object's id:Pk[T] in Anorm?
How to check if the object was already been saved to database ( e.g. by matching its id)?
Something similar to the following snippet:
case class User(id: Pk[Long], name:String) {
def loaded = ...
1
vote
1answer
251 views
How to extract binary information from a database using Anorm with Scala
I'm storing a field as binary(64) in a database and I'm trying to extract it using the Anorm parser using Scala. How can that be done?
I am mostly interested in using the ParserAPI, as the StreamAPI ...
1
vote
1answer
508 views
Scala Anorm Postgresql Error When Storing Byte Array
I have a database table in Scala Playframework defined as
CREATE TABLE account (
id SERIAL,
email TEXT NOT NULL,
buffer BYTEA NOT NULL,
PRIMARY KEY (id)
);
I am using a ...
0
votes
0answers
169 views
Retrieving a data from the Oracle stored procedure's output cursor using the Anorm playframework's library
I am trying to execute an Oracle stored procedure using the Anorm library from the Playframework 2.0.
The procedure signature looks like this:
{ error_code = call get_user(user_id, output_cursor) }
...
1
vote
2answers
418 views
Scala Play Framework Anorm SQL.on disable wrapping replacements with ' '
Whenever I replace placeholders in the SQL query using on it surrounds the replacement with '', is there a way to prevent this?
It means I can't do things like
SQL("SELECT * FROM {table} ...
1
vote
2answers
375 views
How to manage DB related Exceptions in Play! 2.0/Scala using Anorm
I am currently Play!ing with Play 2.0 (Scala). I must admit that it's a lot of fun. I have a question though related to database-related operations exceptions.
Let's say I have Car as a domain class ...
2
votes
1answer
551 views
Handling Error on Insert PlayFramework 2.0 Scala
I'm having problem inserting (or updating) new data to database using anorm in Play Framework 2.0. My model is a blog post defined in the following code:
case class Post(title: String,
content: ...
3
votes
1answer
696 views
Anorm parse float values
In Play framework 2.0, I'm trying to load a real (i.e. single precision float) type column from PostgreSQL using a row parser like this:
case class Foo(bar: Float)
object Foo {
def all = ...
1
vote
0answers
105 views
How to pass a Set[String] as a query parameter to anorm?
I want to form a SQL query that involves a set of strings as a parameter:
SQL("SELECT * FROM TABLE somecolumn in {someset}")
.on("someset" -> Set("v1', "v2", "v3"))
but the SQL query that the ...
8
votes
1answer
1k views
What is purpose of anorm's Pk?
I'm writing Playframework 2.0 application using Scala and Anorm to access db.
Currently I'm using Pk[Long] for id fields and I'm worry about additional get call needed to access actual value. So I ...
3
votes
2answers
267 views
Disable evolutions for a specific database in Play2?
When using several connections in a Play2 app, is it possible to disable the evolutions part of the framework for a specific connection?
EDIT : A ticket has been created.
4
votes
1answer
407 views
How to understand the Anorm parser?
From http://www.playframework.org/documentation/2.0/ScalaTodoList
What does the "~" do and why I don't need a point before map?
val task = {
get[Long]("id") ~
get[String]("label") map {
...
2
votes
1answer
1k views
DB Plugin is not registered in Play 2.0
I just started working with play, and I modified the way I'm doing a SQL read and I'm now getting the following error:
[Exception: DB plugin is not registered.]
The code I have for this class is:
...
13
votes
1answer
2k views
How to Retrieve the Primary Key When Saving a New Object in Anorm
I'm using Scala Play! framework with Anorm to persist the data model to the database. I followed the example code here :
case class Bar(id: Pk[Long], name: String)
object Bar {
val simple = {
...
10
votes
1answer
678 views
Does Scala Anorm String Replacement Sanitize Inputs?
I am using the Play! framework along with Anorm to access the database. I often see examples like the following where object members are injected into the SQL statement directly.
My question is, are ...

