I am trying to use the Zumero Xamarin component, but I get a compiler error.
The type 'System.Data.Common.DbConnection' is defined in an assembly that is not referenced.
I included the component to my project and added the following code.
using System.Data.SQLite;
And
string personalFolder = Environment.GetFolderPath(Environment.SpecialFolder.Personal);
string dbName = "pitches.db";
string dbPath = Path.Combine ( personalFolder, dbName);
var conn = new SQLiteConnection ("Data Source=" + dbPath);
conn.Open ();
conn.ZumeroRegister();