evbo
evbo
I noticed this behavior a while ago, but seems more stable now in the latest release. Maybe okay to close?
Also tokens redefined in an `extern` are underlined red by this plugin that they do not exist with a message like: > Cannot resolve ___
@CharcoGreen could you share your solution? Thanks!
@chrisjlocke I haven't tested on Windows but on Linux this issue is solved by latest nightly build! https://github.com/sqlitebrowser/sqlitebrowser/commit/fb43e0677a4e39d09b5288a6902b34d8c400f5d9 I am able to run `select exp(sum(ln(tbl.stuff)))` to get the product of...
@chrisjlocke hopefully AppImages can be trusted as truly "isolated". `ln()` was not found if I ran this: `DB_Browser_for_SQLite-master-1-a14e6eb-x86_64.AppImage` But I'm now running this and `ln()` _is_ found (along with `exp`):...
Thanks, so I [upgraded to gcc 9](https://stackoverflow.com/a/67212990/1080804) since `-std=c++14` is explicitly required in older commits and noticed sqlitetypes errors: ```bash [ 71%] Building CXX object CMakeFiles/sqlitebrowser.dir/sqlitebrowser_autogen/mocs_compilation.cpp.o In file included from...
@justinclift related to this, do you know how I can build with support for math functions: `ln`, `exp`? The latest nightly for Ubuntu includes them and I'd like to have...
Thank you! I followed [upgrade instructions here for sqlite](https://developpaper.com/update-sqlite-version-under-centos/): >sqlite3 --version 3.39.2 2022-07-21 15:24:47 698edb77537b67c41adc68f9b892db56bcf9a55e00371a61420f3ddd668e6603 and with GCC and sqlite upgraded, **I can build master**. But unfortunately in my case...
Unfortunately that is not used in this environment. I also tried `export PATH="${folder_with_sqlite}:${PATH}"` and even though `which` reported the right version of sqlite3 unfortunately sqlitebrowser still was looking for 3.7...
@justinclift unfortunately `no rpath or runpath tag found`. What do you guys think about adding an optional `env var` or config setting pointing to the sqlite3 version? Could be useful...