aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQLMapper
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/MySQLMapper/MySQLDataReader.cs4
-rw-r--r--OpenSim/Data/MySQLMapper/MySQLDatabaseMapper.cs6
2 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Data/MySQLMapper/MySQLDataReader.cs b/OpenSim/Data/MySQLMapper/MySQLDataReader.cs
index 9fd50f6..113e991 100644
--- a/OpenSim/Data/MySQLMapper/MySQLDataReader.cs
+++ b/OpenSim/Data/MySQLMapper/MySQLDataReader.cs
@@ -2,9 +2,9 @@
2using System.Collections.Generic; 2using System.Collections.Generic;
3using System.Data; 3using System.Data;
4using System.Text; 4using System.Text;
5using OpenSim.Framework.Data.Base; 5using OpenSim.Data.Base;
6 6
7namespace OpenSim.Framework.Data.MySQLMapper 7namespace OpenSim.Data.MySQLMapper
8{ 8{
9 public class MySQLDataReader : OpenSimDataReader 9 public class MySQLDataReader : OpenSimDataReader
10 { 10 {
diff --git a/OpenSim/Data/MySQLMapper/MySQLDatabaseMapper.cs b/OpenSim/Data/MySQLMapper/MySQLDatabaseMapper.cs
index 3f5b18f..16f133a 100644
--- a/OpenSim/Data/MySQLMapper/MySQLDatabaseMapper.cs
+++ b/OpenSim/Data/MySQLMapper/MySQLDatabaseMapper.cs
@@ -28,10 +28,10 @@
28using System.Data; 28using System.Data;
29using System.Data.Common; 29using System.Data.Common;
30using MySql.Data.MySqlClient; 30using MySql.Data.MySqlClient;
31using OpenSim.Framework.Data; 31using OpenSim.Data;
32using OpenSim.Framework.Data.Base; 32using OpenSim.Data.Base;
33 33
34namespace OpenSim.Framework.Data.MySQLMapper 34namespace OpenSim.Data.MySQLMapper
35{ 35{
36 public class MySQLDatabaseMapper : OpenSimDatabaseConnector 36 public class MySQLDatabaseMapper : OpenSimDatabaseConnector
37 { 37 {