designPattern_OptimisticOfflineLock_sqlite_orm

Results 13 issues of designPattern_OptimisticOfflineLock_sqlite_orm

I can't get all the columns of a cross join like this one: (it does not compile) ```C++ storage.select(asterisk(), asterisk, cross_join()); ``` This one does not compile either although they...

bug

Hi Eugene, I am exploring the limits of sqlite_orm. I found an interesting SQL statement which I think is not currently possible yet runs in SQLITE with no problem: ```SQL...

feature

Just to have them all in one place, I am placing the examples of the WITH clause in this issue as found in the document you shared with me the...

good example

There are several queries in examples that produce a CROSS JOIN in the outer query even though the outer query does not mention the other table. See for instance examples\subquery.cpp....

I have this select: Can it be written in sqlite_orm? In particular how can we deal with ifnull function? ```SQL SELECT c.*, IFNULL(i.response_1_count, 0) AS response_1_count FROM Claims c LEFT...

feature

## Expected Behavior The minimum code fragment below should compile without errors... ## Actual Behavior compilation throws all these errors: > 1>C:\vcpkg\installed\x86-windows\include\boost\di.hpp(2937): error C2641: cannot deduce template arguments for 'boost::di::v1_1_0::core::successful::wrapper'...

This code is in error: ```C++ /** * This is where sqlite_orm lib understands that your type is nullable - by * specializing type_is_nullable and deriving from std::true_type. */ template...

ERROR: Q:\C++\sqlite_orm\include\sqlite_orm/sqlite_orm.h(7500,89): fatal error C1001: Internal compiler error. Code at that line is: ```C++ /** * Constraints a deleter to be or to yield a function pointer. */ template concept...

notabug

I place this code: ```C++ TEST_CASE("Benchmark") { BENCHMARK("simple") { return long_computation(); }; } ``` I don't get any display in the console -- actually there is no console, why?? I...

**Describe the bug** I have a windows GUI application built with MFC (it's a dialog type app) and wanted to write some tests but they don't execute. I am including...