Hey, atm I'm not sure how officially supported it is but, there have been 
reports of people successfully using monodroid with vici coolStorage. 

I have been able to drop the assemblies into my project and compile, certain 
classes throw compile time errors when I attempt to use them. specially when 
attempting to connect     like the example for monoTouch on the website 
(http://viciproject.com/wiki/Projects/CoolStorage/MonoTouch)


string dbName = 
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), 
"mydb.db3"); // The following line will tell CoolStorage where the database is, 
// create it if it does not exist, and call a delegate which // creates the 
necessary tables (only if the database file was // created new) 
CSConfig.SetDB(dbName, true, () => { CSDatabase.ExecuteNonQuery(@"CREATE TABLE 
person  (PersonID INTEGER PRIMARY KEY AUTOINCREMENT, Name TEXT(50) NOT NULL, 
DateOfBirth TEXT(30) NULL)"); });


/*
I get no intellisense when attempting to use 
CSConfig's methods and when I try to pass the 3 args to CSConfig.SetDB() I get 
an invalid number of args error. 
*/ 
_______________________________________________
Monodroid mailing list
[email protected]

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid

Reply via email to