If you see the database separate from your application, that means you have
different creator ids for the database and the application. Sometimes this
is what you want, but usually you want the database to have the same creator
as the application so that deleting the application also deletes the
database (and so when a user looks in the memory they will not see both the
database and app.).
Hope that helps,
Kevin
> -----Original Message-----
> From: Shin Tanaka [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, March 02, 1999 10:15 AM
> To: '[EMAIL PROTECTED]'
> Subject: [Q] Database question...
>
>
> Hi, I've been programming Palm about 10 days. I am facing
> some problems.
> I need your expertise.
>
> I am developing a generic database application. Right now,
> the program
> only opens a database and closes it (just DmCreateDatabase and
> DmCloseDatabase).
> When I choose "Menu -> Delete" in the main application form,
> I see that
> along with my program there is the newly created database
> listed. I am not
> sure if this is a problem or not... I really appreciate if
> you can give me
> some comments or suggestions.
>
> My database:
>
> #define feiSalesDBCreator 'Feis'
> #define feiSalesDBType 'ordF'
> #define feiSalesDBName "order-Feis"
>
> Uint mode = dmModeReadWrite;
> DmOpenRef dbP = DmOpenDatabaseByTypeCreator(feiSalesDBType,
> feiSalesDBCreator, mode);
>
> Thank you very much for taking the time to read my letter. I really
> appreciate it.
>
>