Changes between Version 30 and Version 31 of Docs/Prog/Manual/ApplicationLibraries/lib825db


Ignore:
Timestamp:
10/24/25 10:31:28 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825db

    v30 v31  
    5151   appDB = new CDBMySQL(appDBcfg.GetServer(), appDBcfg.GetUser(), appDBcfg.GetPassword(), appDBcfg.GetDatabase());
    5252} else {
    53    path = appDataPath + "ids.db3";
    54    appDB = new CDBSQLite(path);
     53   appDB = new CDBSQLite("/mnt/nand/apps/<appdir>/myapp.db3");
    5554}
    5655
     
    120119When an app finishes existing apps should close the database:
    121120{{{#!c++
    122 db.close;
     121db.close();
    123122}}}
    124123Replace with: