Questions tagged [fmdb]

FMDB is a free, third-party Objective-C wrapper for SQLite, providing a simple, object-oriented interface for Mac OS X and iOS.

FMDB is a free, third-party Objective-C wrapper for SQLite, providing a simple, object-oriented interface for Mac OS X and iOS. FMDB isolates the Objective-C developer from the SQLite C interface and greatly simplifies the process of writing code that interacts with SQLite databases.

FMDB was developed by August "Gus" Mueller and is provided the public free of charge for use without restriction. See the LICENSE.

References

678 questions
-3
votes
2 answers

how to store NSString to Database as INTEGER?

how to store NSString to Database as INTEGER. When update database, the app get Abend. ①User enter a number into UITextField *numTextField by UIPickerView[1~10] ②convert numTextField.text into int num_int by method intValue. ③store num to DB…
Teruya Kusumoto
  • 40
  • 1
  • 2
  • 7
-3
votes
4 answers

Select data from SQLite

Here is my code, and error is visible also: In SQLite Manager from Mozzila Firefox - all queries work fine which means that DB is correct Maybe someone can piont me out what is wrong with my code? EDIT: My code: NSArray *paths =…
Cheese
  • 3,865
  • 5
  • 29
  • 58
-6
votes
1 answer

SQLite singleton class in Swift ( FMDB wrapper )

I am working on Swift singleton class to integrate SQLite easily ( Using FMDB wrapper class ) Simple methods to create database in directory, insert and fetch data. Bridging support for FMDB Objective C usage in Swift. let contactDB =…
Hasya
  • 8,834
  • 4
  • 28
  • 44
1 2 3
45
46