Squeryl is a strongly typed, declarative and SQL like DSL for manipulating database objects from within the Scala language.
0
votes
0answers
42 views
Scalatra serializes object to JSON, but its relation is not serialized
I'm using Scalatra and Squeryl to make a Single Page Application example, so I need my Scalatra Servlet always returning JSON. It's working perfectly when serializing an object with no relations.
I ...
0
votes
1answer
53 views
Squeryl: Error using custom functions and column name references
I'm using Squeryl with custom functions to do geo-spatial lookups, and the SQL produced is incorrect. I'm pulling my hair out trying to figure out what I did wrong. Here's a super simplified example ...
1
vote
1answer
118 views
how to understand the following scala call
I have a quite puzzling question. I am playing with squeryl, and found when I used:
package models
import org.squeryl.{Schema, KeyedEntity}
object db extends Schema {
val userTable = ...
0
votes
1answer
36 views
Join multiple tables with aggregation in Squeryl
I'm trying to join a Card with a Part and left join a summed Stock value to a part (some parts won't have a stock row).
I have the following which I thought would work..
def stockPerBase = ...
0
votes
2answers
48 views
Squeryl: Insert if not exists?
How can I do insert if an entry not yet exists using Squeryl?
I tried to catch a PSQLException if an insert statement is executed on an already-existing tuple, but it does not work (the PSQLException ...
0
votes
1answer
49 views
named database in Play and Squeryl test gave error
I followed this link “Test the Model” part to write a test in Play and Squeryl. But I am using a named database "test" rather than "default". The following code does not work
import models.{AppDB, ...
0
votes
1answer
58 views
Sub Query in select clause with Squeryl
I'm trying to replicate the following query usine Squeryl.
SELECT c.order_number,p.customer,p.base,(
SELECT sum(quantity) FROM "Stock" s where s.base = p.base
) as stock
FROM "Card" c, "Part" p ...
0
votes
1answer
98 views
squeryl ORM in Play with SHA1 password encryption
I am trying to insert username and encrypted password pairs into database table using squeryl ORM framework. My code basically looks like the following:
class SHA1(e: StringExpression[String], ...
2
votes
0answers
83 views
value === is not a member of type parameter TKey (using Squeryl)
I'm trying to write a simple BaseDao class using the excellent squeryl ORM framework.
However I've come across a problem when using generic typed keys. I get a compile error when I try and use the ...
0
votes
1answer
66 views
How can I delete all records from a table with squeryl?
I've looked at ways to use squeryl to delete all records from a table. The only thing I could come up with is
myTable.deleteWhere(r => r.id.isNotNull) //id is the primary key
This seems strange ...
0
votes
1answer
21 views
Squeryl get value of serial
I insert a new row into a database and its id is auto-incremented ("serial"). How can I get the value of the id after insertion? Currently, I am using the following workaround:
inTransaction {
...
0
votes
2answers
60 views
How do I use Squeryl's KeyedEntity?
The only information I could find relating to KeyedEntity was:
Objects that extend KeyedEntity[K] where K is a numeric type
will have their id field assigned their newly created primary key
value ...
0
votes
1answer
121 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
1answer
61 views
Squeryl: how to toggle a boolean column using a partial update
Suppose I have an entity class like that:
case class MyEntity(some_flag: Boolean) extends KeyedEntity[Long]
I want to perform the following SQL update using Squeryl:
update table_name set ...
0
votes
2answers
72 views
Strange result when using squeryl and scala
I'm trying to select the coupled user by getting the correct linkedAccount.
The query that is created is correct but when trying to use a property
on dbuser e.g dbuser.lastName I get a compile error ...
0
votes
1answer
62 views
squeryl date to long conversion - query hangs on simple operation
kind of a follow up question to my previous one:
squeryl date to long conversion
I implemented a DateTime(model) to Long(DB) conversion as mentioned in that thread.
I wrote a simple query to delete ...
3
votes
1answer
133 views
Mapper versus Record/Squeryl
I am about to start my first project in the Lift framework and I have to decide which persistence library to choose. I am about to use relational backend so both Mapper and Record may come in play.
...
1
vote
1answer
43 views
Squeryl partial update does not compile
I'm not sure what squeryl is trying to tell me here:
Error: Cannot prove that org.squeryl.dsl.fsm.Unconditioned =:= org.squeryl.dsl.fsm.Conditioned.
On:
inTransaction {
update(AppDB.postTable) { ...
0
votes
1answer
136 views
squeryl date to long conversion
I want to store java.util.Date (or Timestamp) as an int (or Long) in my db using Squeryl.
I'd like to control how the date is transformed to the number and vice versa.
How can I achieve this?
I'm ...
1
vote
1answer
133 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 ...
1
vote
2answers
119 views
Pattern matching in squeryl queries
I have just started with squeryl and have no answer for how make querie like that
SELECT ref label FROM x_table WHERE ref like x% or lable like x% where x some value from the user, especialy I ...
0
votes
1answer
46 views
Squeryl: from not found
Which import is needed for Squeryl's
from
statement?
Erroneous statement:
def users = from(MySchema.users)(u => where(u.id === user.id.id) select(u))
Error message: "not found: value from"
1
vote
1answer
146 views
Migrating from Squeryl 0.9.5 to 0.9.6
I am trying to migrate an existing application fron SQueryl 0.9.5 to 0.9.6, in order to make use of the new extended field types. I am now to the point where the application and its tests compile, but ...
0
votes
1answer
66 views
ClassCastException when trying to insert with Squeryl
This may be due to my misunderstanding of how Squeryl works. My entity is defined as:
case class Wallet(userid: Int, amount: Long)
extends KeyedEntity[Int] with Optimistic {
def id = userid
...
0
votes
1answer
124 views
KeyedEntity in Squeryl 0.9.6
Version 0.9.6 of Squeryl introduces a new way to declare classes that have an associated primary key, through the use of the KeyedEntityDef typeclass. Still the old way to declare
import ...
1
vote
1answer
73 views
Squeryl - Means of combinations of queries
I have the need to perform some queries that may depend on external supplied parameters via a REST interface. For instance a client may require an URL of the form
some/entities?foo=12&bar=17
...
7
votes
1answer
277 views
Heroku memory leak with Play2 scala
Was doing some stretch (ab) test to my 1 heroku dyno and dev database with 20 connections limit.
During the calls (that access database with squeryl the heap allocation is increasing causing R14 ...
1
vote
2answers
310 views
Storing case object with squeryl
How do I store user case objects with squeryl? I have an Account object with a permission field of type Permission (defined as a sealed trait). I also have 2 case objects (Administrator and ...
1
vote
1answer
69 views
How to unique Indexes in combination of columns in Squeryl
How can i define unique constraints in combination of columns in squeryl schema?
A | B
2 1 allow
2 3 allow
3 1 allow
2 1 don't allow same with row one
0
votes
1answer
267 views
Relations and Foreign Keys in Squeryl
Im using Scala, Squeryl and MySql to build a web app.
I found it easy to persist simple data as strings or integers. But what about when i have relations between objects and i need to use foreign ...
2
votes
1answer
215 views
Squeryl 0.9.5 (with Lift 2.4) not releasing database connections/pools
Following the recommended transaction setup for Squeryl, in my Boot.scala:
import net.liftweb.squerylrecord.SquerylRecord
import org.squeryl.Session
import org.squeryl.adapters.H2Adapter
...
0
votes
2answers
206 views
How to retrieve multiple rows from stored procedure with Scala?
Say you have a stored procedure or function returning multiple rows, as discussed in How to return multiple rows from the stored procedure? (Oracle PL/SQL)
What would be a good way, using Scala, to ...
1
vote
3answers
291 views
Squeryl and PostgreSQL's autoincrement
When I try to insert a new record in a PostgreSQL table using Squeryl's Table.insert, it fires this query:
insert into "users" ("id", "email", "fullname") values (nextval('"s_users_id"'),?,?)
This ...
0
votes
1answer
111 views
Implementing Externalizable in Scala with SerialVersionUID
I have an app that is deployed to Tomcat 7 and is currently clustered among two nodes. I am running into a small issue that occurs when the container tries to deserialize a class which has changed. ...
2
votes
1answer
79 views
How to do something on delete in Squeryl
I have A and B(a_id:Long) entities.
B depends on A. So I've set constrainReference(onDelete cascade). Everything works fine.
But when I delete A I want to free some resources depending on B. Can ...
4
votes
1answer
126 views
Prevent Mixin overriding equals from breaking case class equality
Squeryl defines a trait KeyedEntity which overrides equals, checking for several conditions in an if and calling super.equals in the end. Since super is Object, it will always fail.
Consider:
trait ...
1
vote
1answer
89 views
Squeryl and PGObjects [closed]
I'm facing a quite difficult to solve problem... I have an existing database that is using a lot of postgresql enum.
Now... I don't really know how to retrieve those fields with postgresql. Does ...
0
votes
1answer
196 views
Squeryl custom field types
I am trying to create a custom field type in Squeryl. This field represents an Isin code, so it is backed up by a string field. Following the example on the documentation, I have added a simple ...
0
votes
1answer
308 views
How to convert Squeryl query object to JSON - Play Framework
Case
This case are using Scala, Play Framework, Jerkson and Squeryl. I'm trying to convert the query resultset to JSON but the result presents just the 'persisted' field.
Question
Why the ...
5
votes
3answers
407 views
Play migrations alternatives [closed]
I am about to start a new project that will use the Play! 2 framework for Scala, probably using Squeryl as ORM (but maybe Slick would be fine too, if it ready in time).
Now, Play! has a feature to ...
0
votes
1answer
122 views
How do I implement User validations in Play!?
I have a User model, the scheme for which looks like this:
# --- First database schema
# --- !Ups
create sequence s_user_id;
create table user (
id bigint DEFAULT nextval('s_user_id'),
...
1
vote
1answer
256 views
Select all with Squeryl scala
I'm trying to select ALL of some table in a query. I have to specify a where clause (or so I tihnk), so what goes in there?
def all() = transaction { from(AppDB.users)(s => where(WHAT GOES HERE?) ...
0
votes
1answer
35 views
New Play! class compiler error: “update not member…”
Using Play! in Scala with Squeryl ORM. I have no idea what's causing the problem, but when I added a new model to Play! it now won't compile with a very strange error:
value update is not a member of ...
0
votes
1answer
102 views
Why are JodaTime timestamps not re-initializing in Squeryl?
Using Scala, JodaTime, and Squeryl for ORM. There's an annoying problem where once the application starts up, a Timestamp generated using JodaTime doesn't re-initialize every time it's called. Instead ...
1
vote
1answer
308 views
Avoiding Squeryl transaction in Play! controllers
I am learning Play! and I have followed the To do List tutorial. Now, I would like to use Squeryl in place of Anorm, so I tried to translate the tutorial, and actually it works.
Still, there is one ...
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(
...
0
votes
1answer
68 views
How can I print the contents of a org.squeryl.dsl.Group?
Using Squeryl ORM and Scala. For the first time I did a JOIN statement that used grouping. Admittedly, I can't figure out how to start iterating through the contents.
Here's the JOIN:
join(DB.jobs, ...
2
votes
1answer
169 views
Error “java.util.Date does not take parameters” in Squeryl's where “clause”
I'm fairly new to Scala and currently using an ORM called Squeryl against our MySQL database.
What I'm trying to do is looking up plural records that fall within a time range.
For example, in plain ...
0
votes
1answer
150 views
Squeryl ORM fails using Long, bigints, and operators?
Squeryl just isn't having it today. I've got a nasty error that I have so far unsuccessfully worked around.
The error thrown by Postgres:
Caused by: java.lang.RuntimeException: Exception while ...
1
vote
1answer
202 views
Using gt, gte, etc. in WHERE subquery in Squeryl ORM
I've recently started evaluating Squeryl ORM and it looks great but finally I came to an SQL query that seems to be problematic to "build" with Squeryl.
I'd like to get all products that have a ...
