Re: [sqlite] New word to replace "serverless"

2020-01-28 Thread Acer Yang
On Tue, Jan 28, 2020, 16:13 Cory Nelson wrote: > in-situ > > I think this distinguishes sqlite as being different from an "in-proc yet > separate server". > > On Mon, Jan 27, 2020 at 2:19 PM Richard Hipp wrote: > > > For many years I have described SQLite as being "serverless", as a way > > to

[sqlite] Prebuilt Windows x86 binary missing symbols per sqlite3.def

2017-06-03 Thread Acer Yang
Sqlite version is 3190220. x86 and x64 prebuilt Windows binaries are downloaded from https://www.sqlite.org/download.html I compared sqlite3.def files with sort and diff tools. Some missing symbols as of x86 def file are listed below. sqlite3_data_directory sqlite3_fts5_may_be_corrupt

[sqlite] SQLite custom function for regular expression using c/c++

2016-05-05 Thread Acer Yang
Hi Bhagwat, I try to accomplish that with sqlite3cpp ( https://github.com/yangacer/sqlite3cpp), a light wrapper of sqlite3 for C++. Hope it help :-) // Require sqlite3cpp to be installed from source. // Compile with: clang++-3.6 -g sqlite_re.cpp -lsqlite3cpp -lsqlite3 -std=c++11 //

[sqlite] sqlite3cpp, Yet Another C++ Wrapper of SQLite

2016-04-20 Thread Acer Yang
Dear SQLite users, If you are interested in using SQLite database in modern C++ way sqlite3cpp( https://github.com/yangacer/sqlite3cpp ) hope to be your favorite choice. The sqlite3cpp provides following features: 1. Query with range for-loop and typed parameter binding 2. Create SQL scalar