Skip to content

Instantly share code, notes, and snippets.

@adamped
Created January 8, 2016 01:36
Show Gist options
  • Save adamped/81b66558af9f563f34dc to your computer and use it in GitHub Desktop.
Save adamped/81b66558af9f563f34dc to your computer and use it in GitHub Desktop.
SQLite Interface For Xamarin Forms
public interface ISQLite {
void CloseConnection();
SQLiteAsyncConnection GetAsyncConnection();
void DeleteDatabase();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment