Skip to content

Releases: Axter-com/sqlite3pp_EZ

sqlite3pp_EZ v3.37.2_EZ_v1.1.0

20 Sep 06:27

Choose a tag to compare

  • 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.

sqlite3pp_EZ v3.37.2_EZ_v1.0.6

08 Jun 00:06

Choose a tag to compare

Update sqlite3pp_ez.h

sqlite3pp_EZ v3.36.0.EZ_v1.0.5

11 Jan 22:28

Choose a tag to compare

Made fixes for functions Table::Insert and Table::UpdateDb.
Added to_string, to_wstring, and to_tstring overloaded functions for Clob, Blob, Date, and Datetime types.

Unicode support and SQLite3 sub types

02 Dec 23:03

Choose a tag to compare

  1. Unicode support
  2. Support for all new SQLite3 sub types
  3. Supports correct fetching DB Date and Datetime types
  4. Template Table class
  5. SQL Class Builder

v3.36.0.EZ_v1.0.4

27 Nov 21:59

Choose a tag to compare

Wrapped column and table queries with double quote.
For the SQLiteClassBuilder, added ability to create a main header which includes all the other header created.
The main here has a commented out example function to run a test that creates an instance for all tables/views and populates the instances with all the DB content. A second example function can display all the content of the database.