| |||||||
| Plugins Plugins developed and maintained by users. Want to create your own plugin? Start a thread in here. |
![]() |
| | Thread Tools | Display Modes |
| | #11 (permalink) | |
| Portal Member Join Date: Aug 2004 Location: Melbourne, Australia
Posts: 773
Thanks: 0
Thanked 0 Times in 0 Posts
| Quote:
Sam | |
| | |
| | #12 (permalink) | |
| Portal Member Join Date: Dec 2004 Location: Germany
Posts: 139
Thanks: 0
Thanked 0 Times in 0 Posts
| I already did this: Quote:
__________________ HTPC: P3-S 1133@1133@1,1V passiv ASUS TUSL2-M Skystar 2 Creative Soundblaster nVidia FX5200 120G Samsung SV1204 Toshiba SD-M1712 (Silent Firmware) -------------------------------------------- PVR Scheduler with MediaPortal Plugin http://www.pvr-scheduler.de | |
| | |
| | #13 (permalink) |
| Portal Member Join Date: Dec 2004 Location: Germany
Posts: 139
Thanks: 0
Thanked 0 Times in 0 Posts
| I know now what the error causes. It's in the MP source code: m_db = new SQLiteClient(@"database\TVDatabaseV9.db"); of method "static TVDatabase()" Code: private TVDatabase()
{
}
/// <summary>
/// static constructor. Opens or creates the tv database from database\TVDatabaseV6.db
/// </summary>
static TVDatabase()
{
lock (typeof(TVDatabase))
{
try
{
// Open database
Log.Write("opening tvdatabase");
System.IO.Directory.CreateDirectory("database");
//Upgrade();
m_db = new SQLiteClient(@"database\TVDatabaseV9.db");
CreateTables();
if (m_db!=null)
{
m_db.Execute("PRAGMA cache_size=8192\n");
m_db.Execute("PRAGMA synchronous='OFF'\n");
m_db.Execute("PRAGMA count_changes='OFF'\n");
}
}
catch (Exception ex)
{
Log.Write("TVDatabase exception err:{0} stack:{1}", ex.Message,ex.StackTrace);
}
Log.Write("tvdatabase opened");
}
}
__________________ HTPC: P3-S 1133@1133@1,1V passiv ASUS TUSL2-M Skystar 2 Creative Soundblaster nVidia FX5200 120G Samsung SV1204 Toshiba SD-M1712 (Silent Firmware) -------------------------------------------- PVR Scheduler with MediaPortal Plugin http://www.pvr-scheduler.de |
| | |
| | #14 (permalink) |
| Portal Member Join Date: Dec 2004 Location: Germany
Posts: 139
Thanks: 0
Thanked 0 Times in 0 Posts
| Okay, I know now the issue. MP uses SQLite Wrapper 2.0.1.0 and Sceneo Tvcentral/Meedio uses SQLite Wrapper 1.0.1.0. The thing is that these are two completely different wrapper classes with the same name. :x :x :x But I wanted to support both programs, so I have to remove one.
__________________ HTPC: P3-S 1133@1133@1,1V passiv ASUS TUSL2-M Skystar 2 Creative Soundblaster nVidia FX5200 120G Samsung SV1204 Toshiba SD-M1712 (Silent Firmware) -------------------------------------------- PVR Scheduler with MediaPortal Plugin http://www.pvr-scheduler.de |
| | |
![]() |
| Bookmarks |
| Tags |
| net, plugin, sqlitedll |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Help with TVServer and client | rick78 | Get Support | 8 | 2006-12-12 19:48 |
| MP freezes at full screen, and sound fading out.. | Gunsmoke | General Support | 6 | 2006-08-16 19:43 |
| Why is my WebEPG doing this? | TheMerovingian | WebEPG | 13 | 2006-07-10 21:59 |
| .Net Error with OS "Windows Xp Lite" | Knossos | Installation, configuration support | 2 | 2006-05-02 02:29 |
| Help with Compilation Errors from CVS | MadAxeMan | General Development (no feature request here!) | 8 | 2005-02-08 22:45 |