ActiveJDBC is a Java ORM modeled on ActiveRecord from Ruby on Rails.

learn more… | top users | synonyms

0
votes
1answer
116 views

ActiveJDBC and Dropwizard integration

Is it possible to use ActiveJDBC as my ORM instead of Hibernate that Dropwizard provides. How do I set it up if it is possible. Thanks in advance.
0
votes
2answers
97 views

MyEclipse + Maven + ActiveJDBC how to auto run instrumentation

I am using MyEclipse + Maven and ActiveJDBC for my project. I am deploying my project in exploded mode to a tomcat server from inside MyExclipse so I can profit from hot deploy during development. ...
0
votes
1answer
135 views

Mysql returns Long from PreparedStatement.getGeneratedKeys();

Using JDBC 3 driver, one can insert a record into a table and immediately get autogenerated value for a column. This technique is used in ActiveJDBC. Here is the table definition: CREATE TABLE ...
0
votes
2answers
69 views

ActiveJDBC + Backbone.js Generated attribute name not usable

I am using ActiveJDBC to access a third-party db. There is a column named "users/year". I am not happy with that but cannot change it. This results is an attribute "users/year" in the json thats the ...
0
votes
1answer
211 views

ActiveJDBC concurrent requests?

I am using ActiveJDBC in one of my projects and today I ran into a nasty problem. Concurrent requests to my application will fail, because ActiveJDBC tries to get multiple connections from pool with ...
0
votes
1answer
206 views

Why does eclipse look in the 'workspace' directory for sources instead of those in the ant script?

I have an ant script with the following header: <project name="Simple ActiveJDBC Example" default="clean" basedir="."> And then somewhere below: <target name="compile" depends="clean"> ...
0
votes
2answers
411 views

Autorun a jar/java file 'after' eclipse builds project?

I'm playing around with ActiveJDBC and it has a post-compile step for 'instrumentation' (i.e. crudely speaking it post-process byte-code to add the parent's static members to the class as per the ...
0
votes
1answer
112 views

How to understand this delegator

I'm reading the source of activejdbc, found these methods in ModelInstrumentation. public void instrument(CtClass modelClass) throws Exception { addDelegates(modelClass); CtMethod m = ...
3
votes
1answer
842 views

Hibernate vs ActiveJDBC

I am getting frustrated with Hibernate, the need to impleement equals, hascode, attach detach session, etc.. while it promises to ease the pain working in plain JDBC, it is introducing new complexity ...
1
vote
1answer
214 views

ActiveJDBC More than one Many2Many-association

I have a table with more than one Many2Many-Association to other tables. The names of the tables and columns are a little confusing, so i have to use the @Many2Many-Annotation. But i can“t use this ...
1
vote
2answers
602 views

play framework with ActiveJDBC

I intend to use play web framework with AciveJDBC for persistence. The issue with active JDBC is that it requires instrumentation. My question is , Will i need to do a restart on the server to see ...
1
vote
1answer
669 views

ActiveJDBC - how to define models

you are trying to work with models, but no models are found. Maybe you have no models in project, or you did not instrument the models. It is expected that you have a file activejdbc_models.properties ...
0
votes
2answers
1k views

Can't get activejdbc working?

I have the following classes: package models; public class Test extends activejdbc.Model { } : and : import activejdbc.*; import models.Test; public class ActiveJdbc { public static void ...