Le 04/11/2011 06:15, Steve Teale a écrit :
> I'm getting pretty close to having a reasonably comprehensive native D 
> driver for MySQL - no translated header files, no linking to libraries.
> ...
> Steve

A few simple questions/requests:
1. Does your library allow to get the resultset by batch of N rows ?
It's a common requirement for databases that don't have the equivalent
of the LIMIT clause of MySQL like Oracle. In those DBs, one has to
resort to cursors to realistically retrieve large resultsets, or to
write yet again the piece of code to send several successive queries.

2. would it be possible to automatically map a resultset to an object,
maybe without having to resort to a full-fledged ORM, in the style of
MyBatis (but without XML, preferably) ?

3. While we are on the subject of DB driver, did anyone mention the need
for managing a connexion pool ?

Thx

Dude

Reply via email to