diff options
Diffstat (limited to 'OpenSim/Framework/Data.MySQLMapper')
-rw-r--r-- | OpenSim/Framework/Data.MySQLMapper/MySQLDataReader.cs | 15 | ||||
-rw-r--r-- | OpenSim/Framework/Data.MySQLMapper/MySQLDatabaseMapper.cs | 7 |
2 files changed, 22 insertions, 0 deletions
diff --git a/OpenSim/Framework/Data.MySQLMapper/MySQLDataReader.cs b/OpenSim/Framework/Data.MySQLMapper/MySQLDataReader.cs new file mode 100644 index 0000000..9fd50f6 --- /dev/null +++ b/OpenSim/Framework/Data.MySQLMapper/MySQLDataReader.cs | |||
@@ -0,0 +1,15 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Data; | ||
4 | using System.Text; | ||
5 | using OpenSim.Framework.Data.Base; | ||
6 | |||
7 | namespace OpenSim.Framework.Data.MySQLMapper | ||
8 | { | ||
9 | public class MySQLDataReader : OpenSimDataReader | ||
10 | { | ||
11 | public MySQLDataReader(IDataReader source) : base(source) | ||
12 | { | ||
13 | } | ||
14 | } | ||
15 | } | ||
diff --git a/OpenSim/Framework/Data.MySQLMapper/MySQLDatabaseMapper.cs b/OpenSim/Framework/Data.MySQLMapper/MySQLDatabaseMapper.cs index ae58f00..3f5b18f 100644 --- a/OpenSim/Framework/Data.MySQLMapper/MySQLDatabaseMapper.cs +++ b/OpenSim/Framework/Data.MySQLMapper/MySQLDatabaseMapper.cs | |||
@@ -25,9 +25,11 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System.Data; | ||
28 | using System.Data.Common; | 29 | using System.Data.Common; |
29 | using MySql.Data.MySqlClient; | 30 | using MySql.Data.MySqlClient; |
30 | using OpenSim.Framework.Data; | 31 | using OpenSim.Framework.Data; |
32 | using OpenSim.Framework.Data.Base; | ||
31 | 33 | ||
32 | namespace OpenSim.Framework.Data.MySQLMapper | 34 | namespace OpenSim.Framework.Data.MySQLMapper |
33 | { | 35 | { |
@@ -48,5 +50,10 @@ namespace OpenSim.Framework.Data.MySQLMapper | |||
48 | { | 50 | { |
49 | return "?" + fieldName; | 51 | return "?" + fieldName; |
50 | } | 52 | } |
53 | |||
54 | public override BaseDataReader CreateReader(IDataReader reader) | ||
55 | { | ||
56 | return new MySQLDataReader( reader ); | ||
57 | } | ||
51 | } | 58 | } |
52 | } \ No newline at end of file | 59 | } \ No newline at end of file |