Yevgeniy Zakharov
Yevgeniy Zakharov
closing due to inactivity
FTS is implemented in `dev` branch. So the common mechanism of virtual tables in `sqlite_orm` is created. Soon I'll start implement rtree as well
@MelodyD do you have some example SQL code you would like `sqlite_orm` to support within RTree? I may help us adding unit tests and examples
it was fixed long time ago https://github.com/fnc12/sqlite_orm/blob/dev/examples/subquery.cpp#L1390 and I forgot to close the issue. Closing it now
@crabiner how are you? does it work?
closing due to inactivity
hey @jakemumu . I watched the video. It is very interesting. Let me share how I see the API of this feature: ```c++ struct Title { int id = 0;...
@jakemumu you can help a lot if you post SQL queries examples which you lack here. I'll try to implement this API and report here
more API concept. I found a great example here https://www.sqlitetutorial.net/sqlite-full-text-search/ and drafted how I'd like to implement API: ```c++ struct Post { std::string title; std::string body; }; /// CREATE VIRTUAL...
@jakemumu @re-chen you can check early API in `feature/fts5` branch. It is still in development but your feedback is appreciated