SwiftData icon indicating copy to clipboard operation
SwiftData copied to clipboard

Simple and Effective SQLite Handling in Swift

Results 32 SwiftData issues
Sort by recently updated
recently updated
newest added

I did not read the code, but is it possible to set the database file name dynamically ?

I updated source code to compile under Swift 1.2, it's just replacing "as" with "as!", everything should work just fine. I also added method to add new columns to existing...

Only updated the syntax to swift 2.0 and added string extensions for NSString functions

Have a fork and made a quick fix, check here: https://github.com/jychunyih/SwiftData/blob/master/SwiftData.swift, or get the code in my fork: https://github.com/jychunyih/SwiftData.

The new release of Swift generates about 120 errors. Some of them are just println replacements but the others are more structural. Any chance of an update? Thanks.

Can someone show an example of how to remove a row in a table?

Int64 can be saved to database, but if the Int64 is bigger than Int32.Max, when read that number back from database, it is an unexpected value.

The library currently does not support the `Int64` type. It should be possible to store and retrieve `Int64` values by wrapping them in an `NSNumber`.