-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
no such function: MagicalEntangle #361
Comments
Hello @mikko-ahonen ! Thank you for clear instructions to reproduce the error! Yes, this is exected. Raw SQLite is generally missing some functions that advanced Logica functions need to be implemented, so Logica is enriching SQLite with more functions from Python. This includes You can run only very simple programs via sqlite3 binary. It is supposed that you'd run Logica program directly with logica like so:
Btw, in the rule Is this is a workable method for you? If not, I'd be curious to learn about your usecase and we can try to find a solution. Thank you! |
This is not really a problem for me, as I am executing the queries from python. But I think this could bite others starting with the product. I would expect "print" command to print out sufficient functions so that I can copy paste the code into the SQLite command line tool. This would help the debugging. But like said, this is not blocking me or anything. |
Just to add, I imagine typically people who are taking the product for a spin would do exactly like I did. So they probably use print because that shows you exactly what is happening, and then you can copy-paste it to command line SQL client. Also using SQLite is probably the first option because it does not require you to set iany server up. In many places in the public docs it appears as if only BigTable is supported which was a huge blocker for me. Luckily I tried it out anyway. |
Yeah, that's a good point. I'll be clean up docs asap. Thank you! |
I am having an issue with sqlite database. I just installed fresh logica and sqlite3 (pip install logica, apt install sqlite3) on Debian.
The text was updated successfully, but these errors were encountered: