Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Whitespace fix |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f7d2e4ee6fd2dccd06d4a2d2e52672de |
User & Date: | tangent 2020-03-03 00:11:12.000 |
Context
2020-03-03
| ||
00:53 | Updated Prism.js from 1.17.1 to 1.19.0 check-in: 4bce0de2a4 user: tangent tags: trunk | |
00:11 | Whitespace fix check-in: f7d2e4ee6f user: tangent tags: trunk | |
2020-02-27
| ||
20:34 | Added more dirs and files for Doxygen search output so online refman works properly from the tarball. check-in: d6594ebfe8 user: tangent tags: trunk | |
Changes
Changes to examples/resetdb.cpp.
︙ | ︙ | |||
138 139 140 141 142 143 144 | " num BIGINT NOT NULL, " << " weight DOUBLE NOT NULL, " << " price DECIMAL(6,2) NULL, " << // NaN & inf. == NULL " sdate DATE NOT NULL, " << " description MEDIUMTEXT NULL) " << "ENGINE = InnoDB" << " CHARACTER SET " MYSQLPP_UTF8_CS | | | 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 | " num BIGINT NOT NULL, " << " weight DOUBLE NOT NULL, " << " price DECIMAL(6,2) NULL, " << // NaN & inf. == NULL " sdate DATE NOT NULL, " << " description MEDIUMTEXT NULL) " << "ENGINE = InnoDB" << " CHARACTER SET " MYSQLPP_UTF8_CS " COLLATE " MYSQLPP_UTF8_COL; query.execute(); // Set up the template query to insert the data. The parse() // call tells the query object that this is a template and // not a literal query string. query << "insert into %6:table values " << "(%0q, %1q, %2, %3, %4q, %5q:desc)"; |
︙ | ︙ |