I'm stuck and I'm posting this question everywhere in case someone with some experience knows anything. I need a pure
java jdbc library for Microsoft Access and don't ask why. I chose Ucanaccess with jackcess. Everything was pink and beautiful until I got to calculated fields. The question is summarized below:
For simplicity, we'll assume we have a simple table with two columns: id, and idx2 which returns [id]*2. I want to either query the row (1,2) or anything related to the function (such as (1, [id*2])). I don't care how dirty the solution is.
Those who have used either of these two libraries should know what a simple select returns. How did you fix it?