Changes between Version 9 and Version 10 of Docs/Prog/Manual/ApplicationLibraries/lib825db
- Timestamp:
- 10/23/25 07:14:17 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825db
v9 v10 53 53 }}} 54 54 55 Existing apps with have sql execute statements such as: 56 {{{ 57 int ct; 58 string sql = "SELECT COUNT(*) FROM [Trucks];"; 59 db.execute(sql, ct); 60 }}} 61 62 Repace with: 63 {{{ 64 int ct; 65 string sql = "SELECT COUNT(*) FROM Trucks;"; 66 appDB->Execute(sql, ct); 67 }}} 68 To support both SQLite and MySQL the brackets must be removed from table and field names in SQL statements.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/cardinal.gif)