diff options
Diffstat (limited to 'OpenSim/Data')
-rw-r--r-- | OpenSim/Data/MSSQL/Resources/GridUserStore.migrations | 19 | ||||
-rw-r--r-- | OpenSim/Data/MySQL/MySQLAvatarData.cs | 2 | ||||
-rw-r--r-- | OpenSim/Data/MySQL/MySQLEstateData.cs | 4 | ||||
-rw-r--r-- | OpenSim/Data/MySQL/MySQLGenericTableHandler.cs | 2 | ||||
-rw-r--r-- | OpenSim/Data/MySQL/MySQLPresenceData.cs | 2 | ||||
-rw-r--r-- | OpenSim/Data/MySQL/MySQLXInventoryData.cs | 2 | ||||
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteAuthenticationData.cs | 4 | ||||
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteAvatarData.cs | 2 |
8 files changed, 27 insertions, 10 deletions
diff --git a/OpenSim/Data/MSSQL/Resources/GridUserStore.migrations b/OpenSim/Data/MSSQL/Resources/GridUserStore.migrations new file mode 100644 index 0000000..7a7cecd --- /dev/null +++ b/OpenSim/Data/MSSQL/Resources/GridUserStore.migrations | |||
@@ -0,0 +1,19 @@ | |||
1 | :VERSION 1 # -------------------------- | ||
2 | |||
3 | BEGIN TRANSACTION | ||
4 | |||
5 | CREATE TABLE "GridUser" ( | ||
6 | "UserID" VARCHAR(255) NOT NULL, | ||
7 | "HomeRegionID" CHAR(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000', | ||
8 | "HomePosition" CHAR(64) NOT NULL DEFAULT '<0,0,0>', | ||
9 | "HomeLookAt" CHAR(64) NOT NULL DEFAULT '<0,0,0>', | ||
10 | "LastRegionID" CHAR(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000', | ||
11 | "LastPosition" CHAR(64) NOT NULL DEFAULT '<0,0,0>', | ||
12 | "LastLookAt" CHAR(64) NOT NULL DEFAULT '<0,0,0>', | ||
13 | "Online" CHAR(5) NOT NULL DEFAULT 'false', | ||
14 | "Login" CHAR(16) NOT NULL DEFAULT '0', | ||
15 | "Logout" CHAR(16) NOT NULL DEFAULT '0', | ||
16 | PRIMARY KEY ("UserID") | ||
17 | ) | ||
18 | |||
19 | COMMIT | ||
diff --git a/OpenSim/Data/MySQL/MySQLAvatarData.cs b/OpenSim/Data/MySQL/MySQLAvatarData.cs index 5611302..8c841ab 100644 --- a/OpenSim/Data/MySQL/MySQLAvatarData.cs +++ b/OpenSim/Data/MySQL/MySQLAvatarData.cs | |||
@@ -43,7 +43,7 @@ namespace OpenSim.Data.MySQL | |||
43 | public class MySQLAvatarData : MySQLGenericTableHandler<AvatarBaseData>, | 43 | public class MySQLAvatarData : MySQLGenericTableHandler<AvatarBaseData>, |
44 | IAvatarData | 44 | IAvatarData |
45 | { | 45 | { |
46 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 46 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
47 | 47 | ||
48 | public MySQLAvatarData(string connectionString, string realm) : | 48 | public MySQLAvatarData(string connectionString, string realm) : |
49 | base(connectionString, realm, "Avatar") | 49 | base(connectionString, realm, "Avatar") |
diff --git a/OpenSim/Data/MySQL/MySQLEstateData.cs b/OpenSim/Data/MySQL/MySQLEstateData.cs index 86416d1..9dcf5e2 100644 --- a/OpenSim/Data/MySQL/MySQLEstateData.cs +++ b/OpenSim/Data/MySQL/MySQLEstateData.cs | |||
@@ -48,7 +48,7 @@ namespace OpenSim.Data.MySQL | |||
48 | private string m_connectionString; | 48 | private string m_connectionString; |
49 | private long m_waitTimeout; | 49 | private long m_waitTimeout; |
50 | private long m_waitTimeoutLeeway = 60 * TimeSpan.TicksPerSecond; | 50 | private long m_waitTimeoutLeeway = 60 * TimeSpan.TicksPerSecond; |
51 | private long m_lastConnectionUse; | 51 | // private long m_lastConnectionUse; |
52 | 52 | ||
53 | private FieldInfo[] m_Fields; | 53 | private FieldInfo[] m_Fields; |
54 | private Dictionary<string, FieldInfo> m_FieldMap = | 54 | private Dictionary<string, FieldInfo> m_FieldMap = |
@@ -127,7 +127,7 @@ namespace OpenSim.Data.MySQL | |||
127 | } | 127 | } |
128 | } | 128 | } |
129 | 129 | ||
130 | m_lastConnectionUse = DateTime.Now.Ticks; | 130 | // m_lastConnectionUse = DateTime.Now.Ticks; |
131 | 131 | ||
132 | m_log.DebugFormat( | 132 | m_log.DebugFormat( |
133 | "[REGION DB]: Connection wait timeout {0} seconds", | 133 | "[REGION DB]: Connection wait timeout {0} seconds", |
diff --git a/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs b/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs index 50b6dbe..cfffbd8 100644 --- a/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs +++ b/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs | |||
@@ -39,7 +39,7 @@ namespace OpenSim.Data.MySQL | |||
39 | { | 39 | { |
40 | public class MySQLGenericTableHandler<T> : MySqlFramework where T: class, new() | 40 | public class MySQLGenericTableHandler<T> : MySqlFramework where T: class, new() |
41 | { | 41 | { |
42 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 42 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
43 | 43 | ||
44 | protected Dictionary<string, FieldInfo> m_Fields = | 44 | protected Dictionary<string, FieldInfo> m_Fields = |
45 | new Dictionary<string, FieldInfo>(); | 45 | new Dictionary<string, FieldInfo>(); |
diff --git a/OpenSim/Data/MySQL/MySQLPresenceData.cs b/OpenSim/Data/MySQL/MySQLPresenceData.cs index 2390feb..fc625f0 100644 --- a/OpenSim/Data/MySQL/MySQLPresenceData.cs +++ b/OpenSim/Data/MySQL/MySQLPresenceData.cs | |||
@@ -43,7 +43,7 @@ namespace OpenSim.Data.MySQL | |||
43 | public class MySQLPresenceData : MySQLGenericTableHandler<PresenceData>, | 43 | public class MySQLPresenceData : MySQLGenericTableHandler<PresenceData>, |
44 | IPresenceData | 44 | IPresenceData |
45 | { | 45 | { |
46 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 46 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
47 | 47 | ||
48 | public MySQLPresenceData(string connectionString, string realm) : | 48 | public MySQLPresenceData(string connectionString, string realm) : |
49 | base(connectionString, realm, "Presence") | 49 | base(connectionString, realm, "Presence") |
diff --git a/OpenSim/Data/MySQL/MySQLXInventoryData.cs b/OpenSim/Data/MySQL/MySQLXInventoryData.cs index 287c4dd..481da49 100644 --- a/OpenSim/Data/MySQL/MySQLXInventoryData.cs +++ b/OpenSim/Data/MySQL/MySQLXInventoryData.cs | |||
@@ -189,7 +189,7 @@ namespace OpenSim.Data.MySQL | |||
189 | { | 189 | { |
190 | cmd.ExecuteNonQuery(); | 190 | cmd.ExecuteNonQuery(); |
191 | } | 191 | } |
192 | catch (Exception e) | 192 | catch (Exception) |
193 | { | 193 | { |
194 | return false; | 194 | return false; |
195 | } | 195 | } |
diff --git a/OpenSim/Data/SQLite/SQLiteAuthenticationData.cs b/OpenSim/Data/SQLite/SQLiteAuthenticationData.cs index c54bd74..c3b65bb 100644 --- a/OpenSim/Data/SQLite/SQLiteAuthenticationData.cs +++ b/OpenSim/Data/SQLite/SQLiteAuthenticationData.cs | |||
@@ -33,7 +33,7 @@ using System.Reflection; | |||
33 | using log4net; | 33 | using log4net; |
34 | using OpenMetaverse; | 34 | using OpenMetaverse; |
35 | using OpenSim.Framework; | 35 | using OpenSim.Framework; |
36 | using log4net; | 36 | |
37 | #if CSharpSqlite | 37 | #if CSharpSqlite |
38 | using Community.CsharpSqlite.Sqlite; | 38 | using Community.CsharpSqlite.Sqlite; |
39 | #else | 39 | #else |
@@ -49,7 +49,6 @@ namespace OpenSim.Data.SQLite | |||
49 | private string m_Realm; | 49 | private string m_Realm; |
50 | private List<string> m_ColumnNames; | 50 | private List<string> m_ColumnNames; |
51 | private int m_LastExpire; | 51 | private int m_LastExpire; |
52 | private string m_connectionString; | ||
53 | 52 | ||
54 | protected static SqliteConnection m_Connection; | 53 | protected static SqliteConnection m_Connection; |
55 | private static bool m_initialized = false; | 54 | private static bool m_initialized = false; |
@@ -58,7 +57,6 @@ namespace OpenSim.Data.SQLite | |||
58 | : base(connectionString) | 57 | : base(connectionString) |
59 | { | 58 | { |
60 | m_Realm = realm; | 59 | m_Realm = realm; |
61 | m_connectionString = connectionString; | ||
62 | 60 | ||
63 | if (!m_initialized) | 61 | if (!m_initialized) |
64 | { | 62 | { |
diff --git a/OpenSim/Data/SQLite/SQLiteAvatarData.cs b/OpenSim/Data/SQLite/SQLiteAvatarData.cs index 60a1a3e..faf34da 100644 --- a/OpenSim/Data/SQLite/SQLiteAvatarData.cs +++ b/OpenSim/Data/SQLite/SQLiteAvatarData.cs | |||
@@ -47,7 +47,7 @@ namespace OpenSim.Data.SQLite | |||
47 | public class SQLiteAvatarData : SQLiteGenericTableHandler<AvatarBaseData>, | 47 | public class SQLiteAvatarData : SQLiteGenericTableHandler<AvatarBaseData>, |
48 | IAvatarData | 48 | IAvatarData |
49 | { | 49 | { |
50 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 50 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
51 | 51 | ||
52 | public SQLiteAvatarData(string connectionString, string realm) : | 52 | public SQLiteAvatarData(string connectionString, string realm) : |
53 | base(connectionString, realm, "Avatar") | 53 | base(connectionString, realm, "Avatar") |