I've an issue with sqlite in my iOS project. My configuration:
- Lion
- Xcode 4.3.2 - iOS 5.1
- sqlite3 database whit one table named "test"
When I install my app on the device, I receive this error message in the console "no such table test". But the table exists surely.
The strange thing is this: if I create the same project (identical) on another Mac whit the following configuration the app works perfectly:
- Snow Leopard
- Xcode 4.2 - iOS 5.0
- sqlite3 database whit one table named "test"
Moreover, if I install the project created by first configuration (Lion - Xcode 4.3.2) on the second Mac whit the second configuration (Snow Leopard - Xcode 4.2), the app still doesn't work.
Instead, if I install the project created by second configuration (Snow Leopard - Xcode 4.2) on the Mac whit the first configuration (Lion - Xcode 4.3.2), the app works.
This problem is driving me crazy ! Anyone have an idea ?