1. eDBI problem
- Posted by RogerL Jan 02, 2010
- 1206 views
Hi, I'm a newbie trying to set up some basic CRUD functionality with Euphoria4, wxEuphoria and eDBI (I have some sqlite databases from previous development in other environments). Had a bit of trouble finding where to download eDBI from, but eventually used the links in the forum from about 2 months ago. When I try to use the eDBI include in my scripts I get an error - a missing include 'defs.e' which I can't find in the standard Euphoria4 distribution or elsewhere. Can anyone point me in the right direction please - I'm guessing I'm not downloading the latest/most complete copy of eDBI. Thanks Roger
2. Re: eDBI problem
- Posted by jimcbrown (admin) Jan 02, 2010
- 1147 views
Hi, I'm a newbie trying to set up some basic CRUD functionality with Euphoria4, wxEuphoria and eDBI (I have some sqlite databases from previous development in other environments). Had a bit of trouble finding where to download eDBI from, but eventually used the links in the forum from about 2 months ago. When I try to use the eDBI include in my scripts I get an error - a missing include 'defs.e' which I can't find in the standard Euphoria4 distribution or elsewhere. Can anyone point me in the right direction please - I'm guessing I'm not downloading the latest/most complete copy of eDBI. Thanks Roger
The version of eDBI I have has defs.e in the same place as edbi.e
But defs.e is a single line:
export enum EU_NATIVE, EU_ATOM, EU_INTEGER, EU_SEQUENCE, EU_DATETIME
3. Re: eDBI problem
- Posted by RogerL Jan 02, 2010
- 1168 views
Thanks - I just created a def.e file with that line in it and that fixed my problem! My program runs but is currently not reading any data from my old data base - but that may be due to other problems with my code - so I'm into debugging mode now. Thanks for the assist, Roger