sqlpp11 icon indicating copy to clipboard operation
sqlpp11 copied to clipboard

A type safe SQL template library for C++

Results 42 sqlpp11 issues
Sort by recently updated
recently updated
newest added

Is there arm (AArch64) support?

Does sqlpp11 supply over field in postgresql and please supply a demo

I found this in `serializer.h`: ```c++ 86: static_assert(wrong_t::value, "Sqlite3: No support for outer join"); 93: static_assert(wrong_t::value, "Sqlite3: No support for right_outer join"); ``` Added in [SQLite 3.39.0](https://sqlite.org/releaselog/3_39_0.html). > Add (long...

I started using the library just recently and I like it a lot, but I quickly noticed there is no support whatsoever for views. Are there any plans for changing...

I notice that interpret_tuple.h has a workaround: https://github.com/rbock/sqlpp11/blob/main/include/sqlpp11/interpret_tuple.h ``` // Note: A braced-init-list does guarantee the order of evaluation according to 12.6.1 [class.explicit.init] // paragraph 2 and 8.5.4 [dcl.init.list] paragraph...

Hi Roland, I wish I could move non trivial values out of result fields, actually it returns a copy. Regards.

I'm new to all this database stuff, so I might just be missing something obvious. I've managed to get sqlpp11 functioning in my project, but I didn't find it easy....

ddl2cpp parser failed if the table was created with CREATE OR REPLACE TABLE... type of instructions. This patch ignores the OR REPLACE clause.

Hi, I have not that much experience with cmake, so some help here is welcome. I've installed sqlpp11 as follows: ```bash cmake -DCMAKE_BUILD_TYPE=Release -DUSE_SYSTEM_DATE=ON -DBUILD_POSTGRESQL_CONNECTOR=ON -DBUILD_MYSQL_CONNECTOR=ON .. make -j$(nproc) &&...