Re: [libdbi-users] driver issues and timezones

2007-02-15 Thread Toby Thain
On 14-Feb-07, at 11:01 AM, Markus Hoenicka wrote: > Mike Rylander <[EMAIL PROTECTED]> was heard to say: > > ... > >> I've been using the Postgres driver against an 8.2 database in >> testing, and that seems to work just fine. >> > > That's good. I was more afraid that MySQL 5.0 may cause trouble.

Re: [libdbi-users] driver issues and timezones

2007-02-14 Thread Markus Hoenicka
Mike Rylander writes: > It's actually the libdbi-drivers Makefile that needs patching, and > it's currently specific to linux builds for us. Mingw and Cygwin may > not mind dl-loading-a-dl like linux seems to. It's documented here: > > http://open-ils.org/dokuwiki/doku.php?id=libdbi >

Re: [libdbi-users] driver issues and timezones

2007-02-14 Thread Mike Rylander
On 2/14/07, Markus Hoenicka <[EMAIL PROTECTED]> wrote: > Mike Rylander <[EMAIL PROTECTED]> was heard to say: > > > > hmmm... The libtool interface version number is about compatibility, > > where as the release number is about human-understandable "freshness". > > These are orthogonal concepts, th

Re: [libdbi-users] driver issues and timezones

2007-02-14 Thread Markus Hoenicka
Mike Rylander <[EMAIL PROTECTED]> was heard to say: > hmmm... The libtool interface version number is about compatibility, > where as the release number is about human-understandable "freshness". > These are orthogonal concepts, though the former does deserve > attention. It seems to me that th

Re: [libdbi-users] driver issues and timezones

2007-02-14 Thread Mike Rylander
On 2/12/07, Markus Hoenicka <[EMAIL PROTECTED]> wrote: > Mike Rylander <[EMAIL PROTECTED]> was heard to say: > > > Continuing this long-dormant thread, I want to thank the libdbi core > > team for the help and support in getting basic ISO timezone support > > into the code base. It has helped the

Re: [libdbi-users] driver issues and timezones

2007-02-12 Thread Markus Hoenicka
Mike Rylander <[EMAIL PROTECTED]> was heard to say: > Continuing this long-dormant thread, I want to thank the libdbi core > team for the help and support in getting basic ISO timezone support > into the code base. It has helped the Evergreen[1] project immensely, > as we wouldn't have a fast and

Re: [libdbi-users] driver issues and timezones

2007-02-11 Thread Mike Rylander
Continuing this long-dormant thread, I want to thank the libdbi core team for the help and support in getting basic ISO timezone support into the code base. It has helped the Evergreen[1] project immensely, as we wouldn't have a fast and stable database connector without it. We are now relying o

Re: [libdbi-users] driver issues and timezones

2006-05-16 Thread Mike Rylander
On 5/16/06, Markus Hoenicka <[EMAIL PROTECTED]> wrote: Mike Rylander writes: > I've attached a patch against my local copy of the new file, so it > should patch CVS with out too much of a fight. I've added a little > logic to look for a ':' minute separator in the -8:00 format. It > compile

Re: [libdbi-users] driver issues and timezones

2006-05-16 Thread Markus Hoenicka
Mike Rylander writes: > I've attached a patch against my local copy of the new file, so it > should patch CVS with out too much of a fight. I've added a little > logic to look for a ':' minute separator in the -8:00 format. It > compiles and runs for me, so please give it a whirl and make sur

Re: [libdbi-users] driver issues and timezones

2006-05-16 Thread Mike Rylander
On 5/16/06, Markus Hoenicka <[EMAIL PROTECTED]> wrote: Mike Rylander writes: > I'd be interested to see what the optimization was. :) > I've replaced if (strlen(*cur)) { with if (*cur) { Cool. Not sure why I didn't do that originally... :) Saves us one function call. Whoohoo. Besides

Re: [libdbi-users] driver issues and timezones

2006-05-15 Thread Markus Hoenicka
Mike Rylander writes: > I'd be interested to see what the optimization was. :) > I've replaced if (strlen(*cur)) { with if (*cur) { Saves us one function call. Whoohoo. Besides, I've changed index() calls to strchr() calls just to make the code consistent. > > 04:05:06-08:00 (time) >

Re: [libdbi-users] driver issues and timezones

2006-05-15 Thread Mike Rylander
On 5/15/06, Markus Hoenicka <[EMAIL PROTECTED]> wrote: Mike Rylander writes: > [UPDATE]While my coworker was investigating the problem > described above further, I've developed (and attached) a patch to > dbd_helper.c to parse ISO8601 timezone offsets inside > _dbd_parse_datetime()