Board index » delphi » Adding password to paradox table created by program

Adding password to paradox table created by program

I create most of my tables in paradox from within delphi.  How do I add a
password to a table from within the code? I use delphi 2 and can find
nothing in the help stuff.
 

Re:Adding password to paradox table created by program


On 24 Sep 1999 15:21:27 -0500, "Newman Gentry"

Quote
<ngen...@mail.dbpr.state.fl.us> wrote:
>I create most of my tables in paradox from within delphi.  How do I add a
>password to a table from within the code? I use delphi 2 and can find
>nothing in the help stuff.

Neither the Delphi dataset components nor local SQL provide this
capability. This explains why you did not see it described. The online help
(generally) only documents the features that *are* there.

To do what you describe you would need to use BDE API functions. The BDE
API is documented in theonline help BDE32.HLP, found in the main BDE
directory. Look at the DbiDoRestructure function for modifying already
existing Paradox tables.

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
Steve Koterski              "Health nuts are going to feel stupid someday,
Felton, CA                  lying in hospitals dying of nothing."
                                                              -- Redd Foxx

Re:Adding password to paradox table created by program


Steve
amazing what knowing where to look can do for me.  There is great example
in BDE help .  thanks Newman

Other Threads