Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mootoh/toddledatabase
SQLite wrapper library for iPhone development
https://github.com/mootoh/toddledatabase
Last synced: 2 months ago
JSON representation
SQLite wrapper library for iPhone development
- Host: GitHub
- URL: https://github.com/mootoh/toddledatabase
- Owner: mootoh
- Created: 2009-04-15T10:22:43.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2009-04-15T10:50:00.000Z (over 15 years ago)
- Last Synced: 2024-04-14T16:12:10.425Z (9 months ago)
- Homepage:
- Size: 121 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
- awesome - toddledatabase - SQLite wrapper library for iPhone development (etc)
- awesome - toddledatabase - SQLite wrapper library for iPhone development (etc)
README
ToddleDatabase
================================A SQLite3 wrapper library for iPhone development.
It makes small abstraction for using SQLite3 a bit easier.Usage
----------------* include 'ToddleDatabase.h' and 'libToddoleDatabase.a' in your project
* create db instance via 'ToddleDatabase:initWithPath:'
* query itex. SELECT:
----------------* specify the field by NSDictionary with (field_name, field_type)
* result will be an NSArray consists of NSDictionaryfind more detail in sample application in 'sample' dir.
--
mootoh