Releases: Axter-com/sqlite3pp_EZ
Releases · Axter-com/sqlite3pp_EZ
sqlite3pp_EZ v3.37.2_EZ_v1.1.0
- 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
Update sqlite3pp_ez.h
sqlite3pp_EZ v3.36.0.EZ_v1.0.5
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
- Unicode support
- Support for all new SQLite3 sub types
- Supports correct fetching DB Date and Datetime types
- Template Table class
- SQL Class Builder
v3.36.0.EZ_v1.0.4
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.