remove mono.data.sqliteclient,dll obsolete since mono 1.2.4, Aparently only used in webstats. So we reduce obsolesce issuses to just Mono.Data.Sqlite, for now (needs testing, and do run prebuild)

This commit is contained in:
UbitUmarov
2025-10-28 18:14:36 +00:00
parent c69eca6911
commit dc4513ac33
11 changed files with 8 additions and 20 deletions

View File

@@ -44,7 +44,7 @@ namespace OpenSim.Data.SQLite
/// </summary>
public class SQLiteFramework
{
protected Object m_lockObject = new Object();
protected object m_lockObject = new Object();
protected SQLiteFramework(string connectionString)
{
@@ -60,13 +60,6 @@ namespace OpenSim.Data.SQLite
{
lock (connection)
{
/*
SqliteConnection newConnection =
(SqliteConnection)((ICloneable)connection).Clone();
newConnection.Open();
cmd.Connection = newConnection;
*/
cmd.Connection = connection;
//Console.WriteLine("XXX " + cmd.CommandText);