Changes between Version 16 and Version 17 of Docs/Prog/Manual/ApplicationLibraries/lib825db


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

--

Legend:

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

    v16 v17  
    4040Replace with code similar to:
    4141{{{
     42CAppDatabaseCfg appDBcfg;
     43string path = appDataPath + CFGFILE_DB;
     44appDBcfg.SetArchiveFilepath(path);
     45appDBcfg.ReadConfig();
     46
    4247if(appDBcfg.GetDBType() == CAppDatabaseCfg::appDataMySQL) {
    4348   appDB = new CDBMySQL(appDBcfg.GetServer(), appDBcfg.GetUser(), appDBcfg.GetPassword(), appDBcfg.GetDatabase());