Skip to content

sqlite3pp_EZ v3.37.2_EZ_v1.1.0

Latest
Compare
Choose a tag to compare
@David-Maisonave David-Maisonave released this 20 Sep 06:27
· 20 commits to master since this release
  • Added logic to create directory automatically if it doesn't exist.
  • Fixed spelling errors and renamed variables with mixed case to avoid spell checker from flagging the name.
  • Added initialize variable logic.
  • Fixed bug with appending path separator.
  • Set Text type to sqlite3 text type
  • Added SQLiteDLLConnect
    • SQLiteDLLConnect was added to allow sqlite3pp_EZ to be used with manage C++ (CLR) code.
    • SQLiteDLLConnect also allows for runtime linking to SQLite3.dll.
  • Fixed bug with Numeric
  • Fixed bug with get
  • Added Disconnect function and disconnect option on setGlobalDB
  • Added operator<< for Text type
  • Added enhancement to code to allow it to handle tables and fields having spaces in the name.
  • Added additional examples in the headers created by CreateDbClassInterface.
  • Fixed bug in operator<<(std::wostream& os, const sqlite3pp::Datetime& t) and operator<<(std::wostream& os, const sqlite3pp::Date& t).
  • Added logic to handle TIMESTAMP, BOOL, NUMBER, CHAR, and SUB_TYPE TEXT types.
  • Added functions str_toupper, DirExists, and isValidDate.