Reply to thread

Creating a sqllite database is fairly simple.  Have a look in the mp source, look at the music code within the database project.  All you would need in your plugin is a reference to the sqllite dll


Something like

[code]using SQLite.NET;

...

Private SQLiteClient MyDB = new SQLiteClient(Config.GetFile(Config.Dir.Database, "mydatabase.db3"));


      string strSQL;

      strSQL = String.Format("select xxxx some sql {0} ", strFileName);


      SQLiteResultSet results;

      results = MyDB.Execute(strSQL);[/code]


Top Bottom