Ingres Community Forums Login Register Ingres.com  

Ingres Community Blogs

A few points of interest from the work that Luminary Solutions do, usually relating to Ingres and Java.

We also do a lot of OpenROAD and .NET development, but I tend to stick to the Java side.
Old

Ingres New Features

Posted 2009-07-03 at 03:30 AM by Alan.Raison
Updated 2009-07-07 at 07:20 AM by Alan.Raison (Adding comments on ORDER BY clause)

I recently learnt that Ingres 9.2 has introducted the facility to restrict the rows returned from a query by specifying an offset.

Where previously you would only be able to select the first n rows:
SELECT FIRST n col_name FROM table WHERE col_name = 'value';

There is now an "OFFSET" clause:
SELECT FIRST n col_name FROM table WHERE col_name = 'value' OFFSET m;

I went about implementing this in OpenJPA, but found that this dual-location...
Junior Member
Posted in Uncategorized
Views 10333 Comments 2 Alan.Raison is offline Edit Tags
Old

Getting into OpenJPA

Posted 2009-06-24 at 09:24 AM by Alan.Raison

A while ago we were approached by a company using OpenJPA for their product wanting us to help them port it to Ingres. It fell to me to do the work and it ended up being really interesting, so I thought I'd share some of the progress that's been made.

JPA is a "Persistence Framework" for Java, meaning a way to store a program's data, usually represented in an application as objects, into a database. [url=http://openjpa.apache.org]OpenJPA[/url] is the Apache Foundation's...
Junior Member
Posted in Uncategorized
Views 10494 Comments 1 Alan.Raison is offline Edit Tags
© 2009 Ingres Corporation. All Rights Reserved