From: Lucas_be on
Hello all,
Moving a fileupdate, for dbf-cdx files is giving me a hard day. I have
a file with the needed updates. I sequentially open server after
server. Now under 2.8 this will not work what I change I get an dbfcdx
open error 21 subcode 1101 open database. I close the object with Close
() method followed by a Object := NULL_OBJECT. This worked in 2.7 know
it doesn't anyone an idea ?
Thanks in advance
From: Luc Charels on
On 17 sep, 11:34, Lucas_be <lucas...(a)advalvas.be> wrote:
> Hello all,
> Moving a fileupdate, for dbf-cdx files is giving me a hard day. I have
> a file with the needed updates. I sequentially open server after
> server. Now under 2.8 this will not work what I change I get an dbfcdx
> open error 21 subcode 1101 open database. I close the object with Close
> () method followed by a Object := NULL_OBJECT. This worked in 2.7 know
> it doesn't anyone an idea ?
> Thanks in advance

In debuging de errorinfo I found Gensode 21, oscode 32, subcode 1101,
open database. This cann't be the reason. The first file I can open
but as I said after closing en null_object the next DBServer
{cFile,DBEXCLUSIVE,,cRdd}gives this trouble. Thanks for any response
From: Luc Charels on
On 17 sep, 16:29, Luc Charels <lucas...(a)advalvas.be> wrote:
> On 17 sep, 11:34, Lucas_be <lucas...(a)advalvas.be> wrote:
>
> > Hello all,
> > Moving a fileupdate, for dbf-cdx files is giving me a hard day. I have
> > a file with the needed updates. I sequentially open server after
> > server. Now under 2.8 this will not work what I change I get an dbfcdx
> > open error 21 subcode 1101 open database. I close the object with Close
> > () method followed by a Object := NULL_OBJECT. This worked in 2.7 know
> > it doesn't anyone an idea ?
> > Thanks in advance
>
> In debuging de errorinfo I found Gensode 21, oscode 32, subcode 1101,
> open database. This cann't be the reason. The first file I can open
> but as I said after closing en null_object the next DBServer
> {cFile,DBEXCLUSIVE,,cRdd}gives this trouble. Thanks for any response

Removing cdx files let it work ????? Why
From: Stephen Quinn on
Luc

> Removing cdx files let it work ????? Why
If your opening the index files with
oServer:SETINDEX()

and also have (the default)
Set( _SET_AUTOOPEN, TRUE)

then I *think* you might see this.

I believe something has/was changed in this area by the dev team (not sure
what though, it's just something I recall the great detective Phil
McGuinness (aka Sherlock) mentioning)

CYA
Steve


From: Luc Charels on
On 18 sep, 06:59, "Stephen Quinn" <stevej...(a)bigpondSPAM.net.au>
wrote:
> Luc
>
> > Removing cdx files let it work ????? Why
>
> If your opening the index files with
>     oServer:SETINDEX()
>
> and also have (the default)
>     Set( _SET_AUTOOPEN, TRUE)
>
> then I *think* you might see this.
>
> I believe something has/was changed in this area by the dev team (not sure
> what though, it's just something I recall the great detective Phil
> McGuinness (aka Sherlock) mentioning)
>
> CYA
> Steve

Stephen,
No I open the file only with DBServer{cfile,DBEXCLUSIVE,,cRdd} where
crdd ='DBFCDX'
Thanks for your remark