0
votes
1answer
36 views

Ebean - Which find to use for multiple results?

I am using Play Framework and thus Ebean, I need to find the information inside the 'value' column by searching for the 'company_id'. However, There will be multiple rows with the same company_id and ...
0
votes
1answer
38 views

ebean generates non-mysql-compatible evolutions

I was developing on my machine with Postgres and everything was nice. But after moving to the server with MySQL and provided in application.conf with: db.default.driver=com.mysql.jdbc.Driver ...
0
votes
0answers
64 views

Performance issue on MySQL RDS with Play Framework EBean

I have faced a performance issue on RDS. I'm using Play Framework 2.1.1 with MySQL. The query that I'm testing takes about 2 seconds on my local unmodified MySQL database which I installed from brew ...
3
votes
3answers
81 views

Use Mysql in dev/prod and H2 in test

Using the play framework 2.1, I'm trying to find the best way to have two different databases configurations: One to run my application based on mysql One to test my application based on H2 While ...
0
votes
1answer
113 views

How to set timezone to UTC in Play Framework 2.0 for both production and tests?

We'd like our Play Framework 2.0 Scala applications to handle all date and time information in UTC, both in the app servers and in MySQL database servers. The trick is: Without changing deployment ...
1
vote
0answers
125 views

Lucene/MySQL Integration - Play Framework (Scala)

Has anyone tried to integrate Lucene and MySQL with Play Framework through Scala? The challenge i am finding is how to keep the lucene index in synch with the DB. This is possible using Hibernate ...
0
votes
1answer
35 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 ...
0
votes
1answer
123 views

Inserting an entry into MySQL using Squeryl in Play! framework 2.0

So I'm new to the Play! Framework, and even newer to Scala and Squeryl, but I'm trying to do a simple REST application. Right now I'm testing and trying to get setup with Squeryl. I followed this ...
1
vote
3answers
126 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 ...
0
votes
0answers
41 views

Strange schema generated by Play 2.0 with Ebean

I have a model with following: @JsonSerialize(using = DateTimeSerializer.class, include = JsonSerialize.Inclusion.NON_NULL) private DateTime startTime; @JsonSerialize(using = ...
0
votes
1answer
87 views

Scala date formatting from Mysql

Having trouble with date formatting, I have the code below: BUT i get [IllegalArgumentException: Cannot format given Object as a Date] in Play 2.1-RC3 def formatDate(indate: Date) : String = { ...
1
vote
0answers
144 views

playframework and mysql - how to pass connection properties?

from application.conf: db.default.url=jdbc:mysql://localhost/mydb?characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&more Conn Properties I'm coming from java/spring/wicket to ...
2
votes
1answer
131 views

How to switch between a production and development database configuration in Play? [duplicate]

Possible Duplicate: How do I configure multiple databases work in Play 2.0? Basically, I have an app which I'm testing locally, and then deploying to the server. I'd like a painless way of ...
-3
votes
2answers
114 views

prevent complete MySQL drop every time I update my Play framework website

Every time I update my Play framework website, I get a message saying the database needs evolution. Even when I only change a minor aspect of one table in the database, the whole database gets ...
1
vote
1answer
135 views

How to set up intermediary table in MySQL for ManyToMany relations in squeryl for Play 2 framework?

I'm still learning all the ins and outs of web development, scala, play 2.0, and squeryl and I'm trying to set up a ManyToMany relation between two of my tables. I've looked over the information ...
0
votes
1answer
135 views

sqlexception index out of bounds with correct sql-statement

i've got an sql statement that works pretty well. but on implementing in my webapp working with play 2.1 i get this error: javax.persistence.PersistenceException: Query threw SQLException:Column Index ...
0
votes
1answer
321 views

Error executing MySQL query via ebean using RawSql

In a Play! 2.x application, I'm trying to send a simple query to a MySQL server using ebean. My complete class looks as follows: public static List<Venue> search(String query) { ...
1
vote
1answer
137 views

How do I fetch more than 100000 rows with Ebean and mysql

In my Company table I have 2 million rows that I want to fetch and perform some operations on. I have written a service class and a method for extracting ids. But it only fetches 100000 rows by ...
1
vote
2answers
234 views

How do I do select in list with Ebean createSqlQuery

I'm building a Play2 app with Ebean. I have created a service class with a method for getting venues by a list of ids: public static List<Venue> getVenuesForIds(List<Long> list){ ...
1
vote
2answers
81 views

How do I run tests in Play Framework that depend on having a mysql database?

I'm working on a web application using Java Play Framework 2.0 that heavily relies on databases. I want to start writing functional tests for it that will need to access a database that has data in it ...
0
votes
1answer
168 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 ...
-1
votes
2answers
227 views

Adding dependency to mysql-connector-java causes NoSuchMethodError: com.google.common.cache.CacheBuilder.maximumSize(I) in my Play framework2 app

As the title states I have added mysql dependency: val appName = "report" val appVersion = "1.0-SNAPSHOT" val appDependencies = Seq( "com.google.apis" % ...
2
votes
1answer
507 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 ...
0
votes
2answers
181 views

Play 2.0 (java): Is MongoDB suitable for hotel booking web app?

I want to implement a hotel booking system with Play framework 2.0 (Java). The app will do hotel booking with no banking transactions (credit card will be provided only as identification method to ...
0
votes
0answers
119 views

play framework app on cloudfroundry - could not get database metadata

The application is started on cloudfoundry and the evolutions applied correctly. It is a play framework jpa aplication that works fine on my machine. this is the cloudfoundry log. ...
1
vote
1answer
266 views

How to execute sql file in play framework 2.0?

I have an .sql file that needs to be run every day on scheduler. I found that schedulers are done via Akka. Now how to execute an sql file in play framework 2? Ebean only allows me to execute single ...
0
votes
1answer
700 views

play framework 2: h2 in memory database mysql compatibility mode: escaping characters

I'm working in development mode with an H2 in memory database, but I'd like it to behave as much as possible like a mysql database (see http://www.h2database.com/html/features.html#compatibility) ...
0
votes
3answers
651 views

playframework 2.0.1: connect to database always fails

I just reinstalled my Operating System from Ubuntu 10.04 to 12.04, and I was using play 2.0.1 on ubuntu 10.04, everything was working ok on 10.04, but now with the same play 2.0.1 things messed up and ...
1
vote
1answer
434 views

Heroku :: Play 2.0 :: MySQL/ClearDB :: Failed to acquire connection

I'm switching to Heroku and trying to commit a Play 2.0 Project using ClearDB. All seems to compile fine, except I get an error when Heroku tries to start the application: 2012-08-02T18:10:45+00:00 ...
1
vote
1answer
203 views

Squeryl: KeyedEntity.id isn't updated on insert

I have a table definition class Transaction( val ... ) extends KeyedEntity[Long] { val id:Long = 0 } val transaction = table[Transaction]("transactions") on(transaction) {t => declare( ...
1
vote
1answer
661 views

MySQL driver not found with Play 2.0

I'm trying to use ScalaQuery with play 2 but I keep getting a ""no suitable driver for ...' error. The database connection works fine with Anorm/Nina. Here's my ScalaQuery code : object Client ...
0
votes
2answers
283 views

Play! 2.0 database overwrite on application start. (MYSQL)

Every time I run my Play! application, I am told my database needs an evolution. This overwrites the information I currently have in the db, What could I be doing wrong?
0
votes
1answer
544 views

Using MySQL “SET” column with Ebean ORM

I'm trying to recreate one of our web apps using Play 2.0 with Ebean and I've hit a road block. I can't figure out how to map MySQL's SET type to a field in the model. I've gotten ENUM columns working ...
2
votes
2answers
240 views

Play 2.0 Framework - Reserved Table Name

I have created a model called Group which in turn should create the table group. As a result the database evolutes with errors, saying the table name is a reserved word. Due to the fact that my ...
2
votes
1answer
841 views

Play framework - uploading file in mySql

what is the simplest way to upload a file in mySql db in play 2.0 ?
2
votes
2answers
332 views

How to define mysql engine or default charset with Ebean automatic DDL generation

I'm using Play 2.0 framework with Ebean. It automatically generates DDL scripts. I want to set the mysql engine and the default charset for all created tables. I cannot figure out how to add ...
2
votes
1answer
810 views

playframework 2.0 - exceeded max_user_connections on database evolutions?

I am looing any insight as to how I can configure my play 2.0 app to not use so many database connections on both database evolutions and during runtime. I have asked this in the group and in IRC ...
1
vote
1answer
197 views

Setting up play 2.0 tagging using only 2 model objects?

Ok, so I want to implement tags in my play 2.0 app, Basically what I am thinking to do right now, is to use 3 tables, Questions, Tags and Question_Tags. Should I just use different model objects ...