egodatabase icon indicating copy to clipboard operation
egodatabase copied to clipboard

EGODatabase is a thread-safe Objective-C SQLite wrapper with full support for asynchronous SQLite calls as well as built in NSOperationQueue support.

Results 11 egodatabase issues
Sort by recently updated
recently updated
newest added

In `EGODatabaseRow` class 1. Changed `[[self.data objectAtIndex:index] longValue]` to `[[self.data objectAtIndex:index] longLongValue]`, so no more runtime exceptions like `[__NSCFString longValue]: unrecognized selector sent to instance 0x9bf8e10`. 2. Provided new interface...

Hello, First of all thanks for creating such wonderful small framework wrapper for Sqlite for thread safety. I am trying to integrate it in my app that uses 3 threads...

Hi, I've just seen some crash logs in my app from this code: } else if (sqlite3_column_text(statement,x) != NULL) { [data addObject:@((char*)sqlite3_column_text(statement,x))]; } Putting non-UTF8 characters into it seems to...

Adds some nice convenience methods for populating objects from result sets.

1.Added new delegate method for notifying the delegate that the request has started loading.This is helpful in thread synchronization when adding NSOperations asynchronously to a background queue. 2.Added property encoding...

I want to create NSOperationQueue with max size 25. And operation added to queue after checking queue is full or not. How to check whether queue is full or not?...

According to Instruments, there's a memory leak in - (BOOL)open. It specifically points to: int err = sqlite3_open([databasePath fileSystemRepresentation], &handle); If used frequently, this has a horrendous effect on RAM...

Hello, I am developing an application with an embedded sqlite3 database and I need to make multiple requests one after the other. Is there another way rather than increasing calls...

Using the library from the main thread and I get "Err 5: database is locked" after creating the database. However, running it in GHUnit not show this. Before this error...