Tagged Questions

The low-level JDBC API is powerful but comes with a lot of verbosity. ScalaQuery was designed from the ground up to reduce the amount of boilerplate required and make use of Scala's features to provide a more natural fit for database access in a Scala environment.

learn more… | top users | synonyms

9
votes
1answer
409 views

Are there plans to support “type providers” for Scala's SIQ (ScalaIntegratedQuery) like in F#?

The current state of SIQ was presented by Christopher Vogt at ScalaDays 2011. It was shown how queries would work and look like, but as far as I remember there was no notion about how those types ...
1
vote
1answer
166 views

Supertype for scalaquery query

What is the supertype for all Scalaquery queries? As far as i have understood, Query[Projection[Product]] should be it, e.g.: Projection2[Int, Int] <: Projection[Tuple2[Int,Int]] <: ...
2
votes
2answers
81 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 { ...
2
votes
2answers
267 views

Scalaquery: filter by “any”-combination of conditions

I want join an arbitrary-length list of filters with or. If the list would be fixed-length, it would look like this: query.filter(filters(0) || filters(1) || … || filter(n)) Joining filters with ...
1
vote
1answer
64 views

Where is the implicit conversion from Query to UnitInvoker comming from?

In these examples ( https://github.com/szeiger/scala-query/wiki/Queries) foreach (via for comprehension) is used on a scalaquery Query. But foreach doesn't seem to be present in Query, but only in ...
1
vote
1answer
168 views

How to insert autoincremented master/slave records using ScalaQuery?

Classic issue, new framework -- thus problem. PostgreSQL + Scala + ScalaQuery. I have Master table with serial (autincrement) id and Slave table also with serial id. I need to insert one master ...
1
vote
1answer
377 views

Using dynamic Datasource with Tomcat

I'm creating a series of webservices for my application and i have the need to access a different database based on the serviceCode that is passed as a parameter in the webservice call. I setup a ...
0
votes
1answer
167 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 ...
0
votes
1answer
105 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 ...