Re: Question regarding the use of DBMs

2008-05-06 Thread ed
On Tue, 6 May 2008 14:20:34 -0300 "César Leonardo Blum Silveira" <[EMAIL PROTECTED]> wrote: > On Mon, May 5, 2008 at 7:11 PM, ed <[EMAIL PROTECTED]> wrote: > > > > On Mon, 5 May 2008 18:04:15 -0300 > > "César Leonardo Blum Silveira" <[EMAIL PROTECTED]> wrote: > > > > > Hello, > > > > > > What

Re: Question regarding the use of DBMs

2008-05-06 Thread César Leonardo Blum Silveira
On Mon, May 5, 2008 at 7:11 PM, ed <[EMAIL PROTECTED]> wrote: > > On Mon, 5 May 2008 18:04:15 -0300 > "César Leonardo Blum Silveira" <[EMAIL PROTECTED]> wrote: > > > Hello, > > > > What is the correct way to fill the dsize field in apr_datum_t? I am > > not sure whether I should do it like thi

Re: Question regarding the use of DBMs

2008-05-05 Thread ed
On Mon, 5 May 2008 18:04:15 -0300 "César Leonardo Blum Silveira" <[EMAIL PROTECTED]> wrote: > Hello, > > What is the correct way to fill the dsize field in apr_datum_t? I am > not sure whether I should do it like this > > apr_datum_t d; > > d.dptr = "hello, world"; > d.dsize = strlen(d.dptr); >

Question regarding the use of DBMs

2008-05-05 Thread César Leonardo Blum Silveira
Hello, What is the correct way to fill the dsize field in apr_datum_t? I am not sure whether I should do it like this apr_datum_t d; d.dptr = "hello, world"; d.dsize = strlen(d.dptr); or like this apr_datum_t d; d.dptr = "hello, world"; d.dsize = strlen(d.dptr) + 1; Could anyone tell me whet