Changes between Version 6 and Version 7 of Docs/Prog/Manual/ApplicationLibraries/lib825db


Ignore:
Timestamp:
10/23/25 07:06:11 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v6 v7  
    2020}}}
    2121
     22Existing apps will have global database instance such as:
     23{{{
     24database db;
     25}}}
     26
     27Replace with:
     28{{{
     29CDB* appDB = nullptr;
     30}}}
     31
     32Existing apps will have code to open the database such as:
     33{{{
     34db.open("/mnt/nand/apps/<appdir>/myapp.db3");
     35if(!db.is_open) {
     36   DrawErrorBox("Error opening database", 2);
     37}
     38}}}