Questions tagged [querulous]

Querulous is a JDBC wrapper for Scala from Twitter

6 questions
4
votes
1 answer

Querulous on scala 2.9

Has anyone had success with querulous on scala 2.9? The jar from twitter seems to rely on 2.7
dave
  • 12,406
  • 10
  • 42
  • 59
2
votes
1 answer

Issue using querulous "java.lang.NoClassDefFoundError: com/twitter/conversions/time"

I'm trying to use querulous in a project. It compiles fine using sbt compile but when I do sbt run I get: java.lang.NoClassDefFoundError: com/twitter/conversions/time Any idea why this would happen?
dave
  • 12,406
  • 10
  • 42
  • 59
2
votes
1 answer

Querulous -- Is it usable with a database other than MySQL?

I'm studying querulous and started with this code: import com.twitter.querulous.evaluator.QueryEvaluator class Querulous { def test { val queryEvaluator = QueryEvaluator("org.h2.Driver", "jdbc:h2:tcp://localhost/~/test", "sa", "") val…
Jeriho
  • 7,129
  • 9
  • 41
  • 57
2
votes
1 answer

flockdb setup failed

I built twitter's graph-databases flockdb successfully. But when I run script 'setup-env.sh' under dist/flockdb/scripts, I got the following errors(from development.log): INF [20120807-19:01:36.635] stats: Starting LatchedStatsListener INF…
Wei Li
  • 471
  • 6
  • 14
1
vote
0 answers

Querulous - Connection pooling does not seem to work

We have this object from which we are fetching our queryEvaluator object MyDataSource { val queryFactory = new SqlQueryFactory val apachePoolingDatabaseFactory = new ApachePoolingDatabaseFactory( "SELECT 1", 10, 10, new…
1
vote
0 answers

Updating ResultSets in Querulous?

How do I update ResultSets in Querulous? For example, I have a legacy application that does not have its password encrypted. I want to go back and bcrypt all these passwords using some bcrypt java library. Here's a solution I came up with using…
Bradford
  • 4,143
  • 2
  • 34
  • 44