ScalaQuery is a typesafe API / DSL (domain specific language) built on top of JDBC for accessing relational databases in Scala.
0
votes
1answer
57 views
Select single row based on Id in Slick
I want to query a single row from user based on Id. I have following dummy code
case class User(
id: Option[Int],
name: String
}
object Users extends Table[User]("user") {
def id = ...
0
votes
1answer
91 views
How to reference a column by name in slick plain SQL?
I would like to use named references instead of positional in GetResult, so that instead of this:
implicit val getCoffeeResult = GetResult(r => Coffee(r.<<, r.<<, r.<<))
i ...
2
votes
1answer
267 views
How to make aggregations with slick
I want to force slick to create queries like
select max(price) from coffees where ...
But slick's documentation doesn't help
val q = Coffees.map(_.price) //this is query Query[Coffees.type, ...]
...
3
votes
1answer
144 views
Slick, how to map a query to an inheritance table model?
Slick, how to map a query to an inheritance table model?
i.e,
I have table A, B, C
A is the "parent" table and B & C are "child" tables
What I would like to know is how should I model this using ...
1
vote
1answer
225 views
Why the slick projections do not work
For some reason, in my case, even the simple Slick table declaration is not working. I am using slick 2.10 (1.0.0), which is the latest from the maven central repository.
case class DeviceType(id: ...
0
votes
2answers
262 views
How to use Scala's Slick sql interpolation with owner/schema name-prefixes
We have a database setup where we have a separate user for owners and users of database tables in an Oracle database. This means that in practice each query is prefixed like this: ownername.tablename
...
5
votes
1answer
439 views
How to write nested queries in select clause
I'm trying to produce this SQL with SLICK 1.0.0:
select
cat.categoryId,
cat.title,
(
select
count(product.productId)
from
products product
right ...
2
votes
1answer
318 views
How to use SQL “LIKE” operator in SLICK
Maybe a silly question. But I have not found an answer so far. So how do you represent the SQL's "LIKE" operator in SLICK?
4
votes
1answer
290 views
How to specify SLICK Query sortBy column from runtime parameter?
I have the following SLICK query to get paged results for a data table with the name field matching some value criteria and sorted by the name column
val q = ThirdParties.where(_.name like ...
1
vote
1answer
256 views
Sorting Slick query results in a for expression
The following function works fine, but I would like it to sort the results first by parent_id, and then by order.
def getTree = for {
(a, c) <- Activities leftJoin Clients on (_.id === _.id_a)
} ...
4
votes
1answer
194 views
Scala Slick / ScalaQuery BigDecimal creates decimal(10,0) how to allow decimals?
How do I tell Slick to create a Decimal SQL type which allows for decimals?
It seems that by default Slick doesn't allows for decimals which I noticed with the below code. It creates a column with the ...
0
votes
1answer
324 views
How to parametrize Scala Slick queries by WHERE clause conditions?
Assume these two simple queries:
def findById(id: Long): Option[Account] = database.withSession { implicit s: Session =>
val query = for (a <- Accounts if a.id === id) yield a.*
...
0
votes
0answers
167 views
ScalaQuery Table with UUID
Is there a way to create a scalaquery table with a UUID key:
val User = new Table[(UUID,String,String)]("Users") {
def id = column[UUID]("UserID", O.PrimaryKey)
def username = ...
11
votes
2answers
2k views
scala slick method I can not understand so far
I try to understand some Slick works and what it requires.
Here it an example:
package models
case class Bar(id: Option[Int] = None, name: String)
object Bars extends Table[Bar]("bar") {
def id ...
4
votes
1answer
141 views
How is this a “type mismatch”?
found : (Int, String, Option[java.lang.String])
required: (Int, String, Option[java.lang.String])
Pertinent code:
object M extends Table[(Int, String, Option[String])]("table") {
def msaid = ...
1
vote
1answer
63 views
Wrong length function generated for sqlite in scalaquery
When trying to query scalaquery for the length of a sqlite db it generates the wrong sql.
I get this:
SELECT "t1"."title" FROM "GoodPages" "t1" WHERE ({fn length("t1"."title")} > 65)
when the ...
0
votes
1answer
79 views
Scalaquery generating invalid sql on join onto the same table
I have a query that needs to left join onto the same table to find the latest row of an account.
val all = for {
Join(s,s1) <- Subscriptions leftJoin Subscriptions
on ((a,b) ...
2
votes
2answers
131 views
different development/production databases in scalaquery
ScalaQuery requires (AFAIK) to use an provider specific import in your code, for example:
import org.scalaquery.ql.extended.H2Driver.Implicit._
We are trying to use H2 in development mode and MySQL ...
2
votes
1answer
583 views
How to add AND to the join SLICK
I have the problem writing query in SLICK
Here is my request to MySql database:
SELECT * FROM readings AS r
JOIN parameters AS p
LEFT JOIN sensorvalues AS sv ON sv.parameter_id=p.id AND ...
2
votes
1answer
285 views
Describing optional fields in Slick
The Slick DSL allows two ways to create optional fields in tables.
For this case class:
case class User(id: Option[Long] = None, fname: String, lname: String)
You can create a table mapping in one ...
0
votes
1answer
483 views
Scala Slick: Query using direct embedding doesn't work
I use the following code to request items from a mysql table (The Account class just is a case class representing the database fields)
val res = Queryable[Account].map(_.name)
val db = ...
1
vote
1answer
141 views
How can I limit my query by date using ScalaQuery
I'm using Scalaquery and have run into a problem when I attempt to limit my query based on a date field. I'm using Scala 2.9.2, ScalaQuery 2.9.1:0.10.0-M1 Consider the code below:
case class MyCase ...
2
votes
1answer
371 views
Get auto increment key in scalaquery
I want to insert rows in 2 tables which represent a 1:n relationship using scalaquery / slick.
The tables are defined as follows:
object CompanyBaseTable extends ...
0
votes
0answers
67 views
orderBy creates malformed SQL with scalaquery 0.9.5 and postgresql
I have the following query in my code:
(for (r <- readingsTable if (r.ts <= t && r.sensorID === s.id)) yield r).orderBy(Desc(ts)).take(1)
This generates the following SQL when using ...
4
votes
1answer
942 views
How to count results with a filter using Slick?
I face a problem I would like to simplify : (quite sure, I'm doing it wrong in fact).
Wanted
I would like to count the number of users having an id = 1. In SQL language let's say it is something ...
4
votes
1answer
214 views
Select rows based on MAX values of a column in ScalaQuery/SLICK
Say that i have table such as:
UserActions
UserId INT
ActionDate TIMESTAMP
Description TEXT
that holds dates where users perfomed certainActions. If i wanted to get the last action ...
1
vote
1answer
99 views
Unpack a NamedColumn in a condition of a for-loop in ScalaQuery
I am quite new to Scala and ScalaQuery, using it a couple of weeks now. I am trying to figure out a condition in a query by calling a function, but I get a NamedColumn[T] instead of T, how to unpack ...
0
votes
0answers
190 views
Storing object and retrieve it with pattern matching with Slick library (old ScalaQuery)?
I'm a beginner in the orm/database domain in scala.
I choose the new Slick library to make my recent project because it's part of Typesafe in the future. But, actually there is very few ...
1
vote
1answer
552 views
ScalaQuery and Play framework: Best practice for handling unassigned (AutoInc) primary keys
I am using Play 2.0.2 with ScalaQuery 0.9.5.
I have the following simple model code:
case class Task(id: Long, name: String)
object Task extends Table[(Long, String)]("task") {
lazy val database = ...
1
vote
1answer
657 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 ...
11
votes
2answers
710 views
How do I abstract the domain layer from the persistence layer in Scala
UPDATE:
I've edited the title and added this text to better explain what I'm trying to achieve: I'm trying to create a new application from the ground up, but don't want the business layer to know ...
4
votes
1answer
438 views
How can I present a many-to-many relationship using a link table with ScalaQuery or SLICK?
I've asked a similar question recently, and got a great reply on solving a many-to-many relationship problem with Lift Mapper. I looked at the ScalaQuery/SLICK documentation but it does not document ...
2
votes
1answer
374 views
How do I model a relational database link-table with Scala?
I need to do quite a few many to many mapping of objects in Scala and save it to a relational database.
Here is a fake example to simplify the problem:
Let's say we want to model lecture rooms and ...
3
votes
1answer
405 views
Configure ScalaQuery in a Play 2.0 project
I wanted to try out using ScalaQuery with the Play! Framework (version 2.0.2) but I can't get it to work. I added the following line to the Build.scala file :
val appDependencies = Seq(
...
0
votes
1answer
572 views
Slick (Scalaquery) - insert gives type error
I am using Slick (Scalaquery) in my play framework application. According to slick tutorial - I can define a projection for columns I want to insert into. (I am defining this projection because my ...
11
votes
3answers
6k views
Play framework + SLICK (Scalaquery) tutorial
Does anybody know of a good tutorial or a sample project (github) of using Play framework with SLICK (ScalaQuery)? I am struggling to make them work together.
I am getting this error:
[info] play - ...
6
votes
3answers
1k views
NoSQL (e.g. MongoDB) or RDMS (e.g. PostgreSQL) for new Scala project?
I'm developing a brand new project in Scala. It's just an application for a bunch of CRUD operations, however, because of some eccentric requirements, Play2 or Lift does not fit the bill, so I'm going ...
3
votes
0answers
158 views
Batch delete via mutate
This is quite strange, when attempting to delete a batch of records,
only 1/2 the rows are deleted.
For example, a query that returns a List of Users, I would attempt to
delete like so:
val byUser = ...
1
vote
2answers
170 views
Conditionally enhancing ScalaQuery queries
I have a query I'm conditionally enhancing dependent on the presence or absence of count and offset parameters.
val retrieveCustomer: (Option[String], Option[Int], Option[Int]) => List[Customer] = ...
2
votes
1answer
747 views
Mapping custom types in the ScalaQuery O/R framework
In his comparison of ScalaQuery and Squeryl, Stefan Zeiger (author of ScalaQuery) says in the third bullet-point:
ScalaQuery comes with support for a basic set of JDBC types and can be
extended ...
2
votes
1answer
128 views
Why doesn't ScalaQuery create ddl for foreign key?
I have the following table definitions using ScalaQuery 0.10.0-M1:
import org.scalaquery.ql.basic.{ BasicTable => Table }
object Nodes extends Table[(String, String)]("node") {
def id = ...
13
votes
1answer
378 views
How can I compose queries in ScalaQuery in order to create reusable traits?
I'm having some trouble composing different query components into a single Query. My goal is to create a set of traits (e.g. SoftDeletable, HasName, SortedByName, WithTimestamps) that I can simply ...
1
vote
1answer
121 views
Scala query generating invalid SQL
I'm using scalaquery to connect to both oracle and postgres servers.
This behaviour is occuring for both Oracle and Postgres, but it's only valid (and still incorrect) SQL in Postgres.
At some point, ...
0
votes
3answers
396 views
Select * or Equivalent in Scala Query
I've got this ScalaQuery model in Playframework 2
object User {
implicit object UserFormat extends Format[User] {
def reads(json: JsValue) : User = User(
None,
(json \ ...
0
votes
0answers
121 views
List[Map[String,A]] to database table in scalaquery
I just learnt about scalaquery yesterday and it seems useful. I'd like to convert a List[Map[String,A]] (where A is a primitive type - Int, Float, String etc. and the set of keys in each of the maps ...
0
votes
1answer
173 views
ScalaQuery not creating DDL?
I have an example DB in a scala object, but the tables are not created.
If I call the initialize and then I call the addEntries, I get a Table not existing exception by the JDBC layer. Where am I ...
3
votes
2answers
473 views
ScalaQuery many to many
Do anybody have an Idea of how to archive many to many in Scala Query?
I want to connect a blog post to a series of tags.
This is my database design:
I have succeeded with my custom code but when ...
2
votes
2answers
435 views
Re-using sessions in ScalaQuery?
I need to do small (but frequent) operations on my database, from one of my api methods. When I try wrapping them into "withSession" each time, I get terrible performance.
db withSession {
...
0
votes
1answer
304 views
How to read Scala API documentation?
I'm having a hard time dechifering Scala API documentation.
For example I've defined a timestamp for use in a database.
def postedDate = column[Timestamp]("posted_date", O NotNull, O Default new ...
3
votes
1answer
715 views
How to get autoincrement ID just inserted by ScalaQuery
I am using ScalaQuery to access PostgreSql. Data is a table that has an autoincremental primarykey named id, defined as def id = column[Long] ("id", O NotNull, O PrimaryKey, O AutoInc, O DBType ...
