Re: Error trying to close EDS database
- Posted by "C. K. Lester" <euphoric at cklester.com> Oct 14, 2003
- 520 views
ronaustin at alltel.net wrote: > > So I am creating the table more than once. Would it then be better to > write a short install program that would be ran one timR> > You could just check for the existence of the table and create it if it doesn't exist... err = db_select_table("whatever") if err != DB_OK then err = db_create_table("whatever") end if -- keep going...