Re: EuMVC-SQlite3:Weird Unassigned Variable Issue
- Posted by ghaberek (admin) Jan 12, 2022
- 867 views
euphoric said...
Why does it claim sqlitedb has not been assigned a value?
If I comment out the "include sqlite3.e" line, it works fine!
Are you using the MVC wrapper or do you have another "sqlite3.e" somewhere else?
You should have your Euphoria include paths pointing to the MVC include/ directory and reference things from there.
I typically do this in eu.cfg:
[all] -i ../euphoria-mvc/include
So you should use include db/sqlite3.e or include mvc/app.e, etc. But you have include sqlite3.e.
-Greg