Changes between Version 53 and Version 54 of Docs/Prog/Manual/ApplicationLibraries/lib825db


Ignore:
Timestamp:
02/19/26 14:52:45 (5 days ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v53 v54  
    171171}}}
    172172
    173 If a custom app includes PHP reports when MySQL is used the following code may added to create symbolic link to the reports folder.
    174 
    175 {{{#!c++
     173If a custom app includes PHP reports when MySQL is used the following code may included to create a symbolic link from the web server custom reports folder to the app reports folder.
     174
     175{{{#!c++
     176if(appDB->OpenDatabase() == false) {
     177        DrawErrorBox("Database Error!", 2);
     178}
     179
    176180if(dynamic_cast<CDBMySQL*>(appDB)) {
    177181        string reportsPath = APP_DATA_DIR;