Show HN: TankDB - An open source object oriented Sqlite wrapper for iOS
1–6 of 6 posts
Re: Show HN: TankDB - An open source object oriented Sqlite wrapper for iOS
#2Re: Show HN: TankDB - An open source object oriented Sqlite wrapper for iOS
#3Re: Show HN: TankDB - An open source object oriented Sqlite wrapper for iOS
#4I believe Core Data can be backed by SQLite so what does this offer, just ease-of-use?
Re: Show HN: TankDB - An open source object oriented Sqlite wrapper for iOS
#5I believe Core Data can be backed by SQLite so what does this offer, just ease-of-use?
This is correct. I originally created this library for someone who was completely new to iOS and SQL. The documentation and syntax for Core Data was a bit too daunting for him. With this he was able to have his project use local storage with a very small learning curve.
Re: Show HN: TankDB - An open source object oriented Sqlite wrapper for iOS
#6Earlier quoted context omitted.
This is correct. I originally created this library for someone who was completely new to iOS and SQL. The documentation and syntax for Core Data was a bit too daunting for him. With this he was able to have his project use local storage with a very small learning curve.
I see, nice. Would it have made more sense to use Core Data under the hood, or do you already do that? That way the user could easily transition to using Core Data at a later date, and keep their data?