Board index » delphi » Pdoxusrs.net and Pdoxusrs.lck

Pdoxusrs.net and Pdoxusrs.lck

Hi,
I'm writing a Delphi App with Access 7.0 database. Is it correct that the
BDE uses Pdoxusrs.net and Pdoxusrs.lck also when the App runs with an Access
database?
Anyway to avoid this....

Regards Harald

 

Re:Pdoxusrs.net and Pdoxusrs.lck


Quote
>I'm writing a Delphi App with Access 7.0 database. Is it correct that the
>BDE uses Pdoxusrs.net and Pdoxusrs.lck also when the App runs with an Access
>database?

That is not correct.  These files are used only for Paradox tables.

Bill

(Sorry but TeamB cannot answer support questions received via email.)
(To send me email for any other reason remove .nospam from my address.)

Re:Pdoxusrs.net and Pdoxusrs.lck


Harald,

      The BDE uses paradox for internal tables that it maintains. No
way to avoid that AFAIK.

 --- x
==============================
Xavier Pacheco (TeamB)
xav...@xapware.com

Sorry but TeamB cannot answer support
questions received via email.

Re:Pdoxusrs.net and Pdoxusrs.lck


Quote
>I'm writing a Delphi App with Access 7.0 database. Is it correct that the
>BDE uses Pdoxusrs.net and Pdoxusrs.lck also when the App runs with an Access
>database?

No.  Unless you try to use CashedUpdtes which do use Paradox tables
for caching.

--
Brian Bushay (TeamB)
Bbus...@DataGuidance.com

Re:Pdoxusrs.net and Pdoxusrs.lck


Xavier,

internal tables.....hmmm....well I only use  TQuery with one or two
exceptions which uses TTable, but I guess TQuery might generate 'internal
tables' (answer tables) ?

-harald

Xavier Pacheco (TeamB) skrev i meldingen
<34d7de70.4188...@forums.borland.com>...
|Harald,
|
|      The BDE uses paradox for internal tables that it maintains. No
|way to avoid that AFAIK.
|
| --- x
|==============================
|Xavier Pacheco (TeamB)
|xav...@xapware.com
|
|Sorry but TeamB cannot answer support
|questions received via email.

Re:Pdoxusrs.net and Pdoxusrs.lck


Brian,
I'm not using Cached updates. I use TQuery but they are not cached, also one
or two TTables. But as Xavier points out BDE uses Paradox for Internal
tabels. A Query might perhaps generate an internal table, the answer table?

Brian Bushay TeamB skrev i meldingen
<34f0ffa2.52343...@forums.borland.com>...
|
|
|>I'm writing a Delphi App with Access 7.0 database. Is it correct that the
|>BDE uses Pdoxusrs.net and Pdoxusrs.lck also when the App runs with an
Access
|>database?
|No.  Unless you try to use CashedUpdtes which do use Paradox tables
|for caching.
|
|
|--
|Brian Bushay (TeamB)
|Bbus...@DataGuidance.com

Re:Pdoxusrs.net and Pdoxusrs.lck


Quote
>'m not using Cached updates. I use TQuery but they are not cached, also one
>or two TTables. But as Xavier points out BDE uses Paradox for Internal
>tabels. A Query might perhaps generate an internal table, the answer table?

Queries will use memory if it is avalable and then use a temporary
table if needed so I suppose that is right.  The temporaty table will
be in the privateDir so it shouldn''t have to have a net file and .lck
files if you don't have Local share set True.

--
Brian Bushay (TeamB)
Bbus...@DataGuidance.com

Other Threads