diff options
author | lbsa71 | 2008-01-16 12:25:13 +0000 |
---|---|---|
committer | lbsa71 | 2008-01-16 12:25:13 +0000 |
commit | 5e757d2ad1ae3ad158a9b5f6077abcfaf9fac616 (patch) | |
tree | 96b3f4b939bd0c4a6e8b457f3e604ba143970c00 /OpenSim/Framework | |
parent | * Fix for: http://opensimulator.org/mantis/view.php?id=358 (diff) | |
download | opensim-SC_OLD-5e757d2ad1ae3ad158a9b5f6077abcfaf9fac616.zip opensim-SC_OLD-5e757d2ad1ae3ad158a9b5f6077abcfaf9fac616.tar.gz opensim-SC_OLD-5e757d2ad1ae3ad158a9b5f6077abcfaf9fac616.tar.bz2 opensim-SC_OLD-5e757d2ad1ae3ad158a9b5f6077abcfaf9fac616.tar.xz |
* More work on getting the database framework to actually work
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Data.MySQL/MySQLDatabaseMapper.cs | 2 | ||||
-rw-r--r-- | OpenSim/Framework/Data/OpenSimDataReader.cs | 2 | ||||
-rw-r--r-- | OpenSim/Framework/Data/OpenSimDatabaseConnector.cs (renamed from OpenSim/Framework/Data/OpenSimDatabaseMapper.cs) | 11 | ||||
-rw-r--r-- | OpenSim/Framework/Data/OpenSimObjectFieldMapper.cs | 2 | ||||
-rw-r--r-- | OpenSim/Framework/Data/OpenSimTableMapper.cs | 5 | ||||
-rw-r--r-- | OpenSim/Framework/Data/PrimitiveBaseShapeTableMapper.cs | 8 |
6 files changed, 15 insertions, 15 deletions
diff --git a/OpenSim/Framework/Data.MySQL/MySQLDatabaseMapper.cs b/OpenSim/Framework/Data.MySQL/MySQLDatabaseMapper.cs index 6b23c74..ac5fb9d 100644 --- a/OpenSim/Framework/Data.MySQL/MySQLDatabaseMapper.cs +++ b/OpenSim/Framework/Data.MySQL/MySQLDatabaseMapper.cs | |||
@@ -3,7 +3,7 @@ using MySql.Data.MySqlClient; | |||
3 | 3 | ||
4 | namespace OpenSim.Framework.Data.MySQL | 4 | namespace OpenSim.Framework.Data.MySQL |
5 | { | 5 | { |
6 | public class MySQLDatabaseMapper : OpenSimDatabaseMapper | 6 | public class MySQLDatabaseMapper : OpenSimDatabaseConnector |
7 | { | 7 | { |
8 | public MySQLDatabaseMapper(string connectionString) | 8 | public MySQLDatabaseMapper(string connectionString) |
9 | : base(connectionString) | 9 | : base(connectionString) |
diff --git a/OpenSim/Framework/Data/OpenSimDataReader.cs b/OpenSim/Framework/Data/OpenSimDataReader.cs index 11a8b8b..518cdc9 100644 --- a/OpenSim/Framework/Data/OpenSimDataReader.cs +++ b/OpenSim/Framework/Data/OpenSimDataReader.cs | |||
@@ -7,7 +7,7 @@ using TribalMedia.Framework.Data; | |||
7 | 7 | ||
8 | namespace OpenSim.Framework.Data | 8 | namespace OpenSim.Framework.Data |
9 | { | 9 | { |
10 | public class OpenSimDataReader : DataReader | 10 | public class OpenSimDataReader : BaseDataReader |
11 | { | 11 | { |
12 | public OpenSimDataReader(IDataReader source) : base(source) | 12 | public OpenSimDataReader(IDataReader source) : base(source) |
13 | { | 13 | { |
diff --git a/OpenSim/Framework/Data/OpenSimDatabaseMapper.cs b/OpenSim/Framework/Data/OpenSimDatabaseConnector.cs index 4f202bc..ec80488 100644 --- a/OpenSim/Framework/Data/OpenSimDatabaseMapper.cs +++ b/OpenSim/Framework/Data/OpenSimDatabaseConnector.cs | |||
@@ -1,12 +1,12 @@ | |||
1 | using System.Data.Common; | 1 | using System.Data; |
2 | using libsecondlife; | 2 | using libsecondlife; |
3 | using TribalMedia.Framework.Data; | 3 | using TribalMedia.Framework.Data; |
4 | 4 | ||
5 | namespace OpenSim.Framework.Data | 5 | namespace OpenSim.Framework.Data |
6 | { | 6 | { |
7 | public abstract class OpenSimDatabaseMapper : BaseDatabaseConnector | 7 | public abstract class OpenSimDatabaseConnector : BaseDatabaseConnector |
8 | { | 8 | { |
9 | public OpenSimDatabaseMapper(string connectionString) : base(connectionString) | 9 | public OpenSimDatabaseConnector(string connectionString) : base(connectionString) |
10 | { | 10 | { |
11 | } | 11 | } |
12 | 12 | ||
@@ -19,5 +19,10 @@ namespace OpenSim.Framework.Data | |||
19 | 19 | ||
20 | return base.ConvertToDbType(value); | 20 | return base.ConvertToDbType(value); |
21 | } | 21 | } |
22 | |||
23 | public override BaseDataReader CreateReader(IDataReader reader) | ||
24 | { | ||
25 | return new OpenSimDataReader(reader); | ||
26 | } | ||
22 | } | 27 | } |
23 | } | 28 | } |
diff --git a/OpenSim/Framework/Data/OpenSimObjectFieldMapper.cs b/OpenSim/Framework/Data/OpenSimObjectFieldMapper.cs index d8c2ddf..103de2d 100644 --- a/OpenSim/Framework/Data/OpenSimObjectFieldMapper.cs +++ b/OpenSim/Framework/Data/OpenSimObjectFieldMapper.cs | |||
@@ -44,7 +44,7 @@ namespace OpenSim.Framework.Data | |||
44 | } | 44 | } |
45 | } | 45 | } |
46 | 46 | ||
47 | protected override object GetValue(DataReader reader) | 47 | protected override object GetValue(BaseDataReader reader) |
48 | { | 48 | { |
49 | object value; | 49 | object value; |
50 | 50 | ||
diff --git a/OpenSim/Framework/Data/OpenSimTableMapper.cs b/OpenSim/Framework/Data/OpenSimTableMapper.cs index a77936f..744f062 100644 --- a/OpenSim/Framework/Data/OpenSimTableMapper.cs +++ b/OpenSim/Framework/Data/OpenSimTableMapper.cs | |||
@@ -8,10 +8,5 @@ namespace OpenSim.Framework.Data | |||
8 | public OpenSimTableMapper(BaseDatabaseConnector database, string tableName) : base(database, tableName) | 8 | public OpenSimTableMapper(BaseDatabaseConnector database, string tableName) : base(database, tableName) |
9 | { | 9 | { |
10 | } | 10 | } |
11 | |||
12 | protected override DataReader CreateReader(IDataReader reader) | ||
13 | { | ||
14 | return new OpenSimDataReader(reader); | ||
15 | } | ||
16 | } | 11 | } |
17 | } | 12 | } |
diff --git a/OpenSim/Framework/Data/PrimitiveBaseShapeTableMapper.cs b/OpenSim/Framework/Data/PrimitiveBaseShapeTableMapper.cs index af49376..c915538 100644 --- a/OpenSim/Framework/Data/PrimitiveBaseShapeTableMapper.cs +++ b/OpenSim/Framework/Data/PrimitiveBaseShapeTableMapper.cs | |||
@@ -5,11 +5,11 @@ using libsecondlife; | |||
5 | 5 | ||
6 | namespace OpenSim.Framework.Data | 6 | namespace OpenSim.Framework.Data |
7 | { | 7 | { |
8 | public class PrimitiveBaseShapeRowMapper : RowMapper<PrimitiveBaseShape> | 8 | public class PrimitiveBaseShapeRowMapper : BaseRowMapper<PrimitiveBaseShape> |
9 | { | 9 | { |
10 | public Guid SceneObjectPartId; | 10 | public Guid SceneObjectPartId; |
11 | 11 | ||
12 | public PrimitiveBaseShapeRowMapper(Schema schema, PrimitiveBaseShape obj) : base(schema, obj) | 12 | public PrimitiveBaseShapeRowMapper(BaseSchema schema, PrimitiveBaseShape obj) : base(schema, obj) |
13 | { | 13 | { |
14 | } | 14 | } |
15 | } | 15 | } |
@@ -19,7 +19,7 @@ namespace OpenSim.Framework.Data | |||
19 | public PrimitiveBaseShapeTableMapper(BaseDatabaseConnector connection, string tableName) | 19 | public PrimitiveBaseShapeTableMapper(BaseDatabaseConnector connection, string tableName) |
20 | : base(connection, tableName) | 20 | : base(connection, tableName) |
21 | { | 21 | { |
22 | ObjectSchema<PrimitiveBaseShapeRowMapper> rowMapperSchema = new ObjectSchema<PrimitiveBaseShapeRowMapper>(this); | 22 | BaseSchema<PrimitiveBaseShapeRowMapper> rowMapperSchema = new BaseSchema<PrimitiveBaseShapeRowMapper>(this); |
23 | m_schema = rowMapperSchema; | 23 | m_schema = rowMapperSchema; |
24 | 24 | ||
25 | m_keyFieldMapper = rowMapperSchema.AddMapping<Guid>("SceneObjectPartId", | 25 | m_keyFieldMapper = rowMapperSchema.AddMapping<Guid>("SceneObjectPartId", |
@@ -111,7 +111,7 @@ namespace OpenSim.Framework.Data | |||
111 | delegate(PrimitiveBaseShapeRowMapper shape, byte[] value) { shape.Object.ExtraParams = value; }); | 111 | delegate(PrimitiveBaseShapeRowMapper shape, byte[] value) { shape.Object.ExtraParams = value; }); |
112 | } | 112 | } |
113 | 113 | ||
114 | public override PrimitiveBaseShapeRowMapper FromReader(DataReader reader) | 114 | public override PrimitiveBaseShapeRowMapper FromReader(BaseDataReader reader) |
115 | { | 115 | { |
116 | PrimitiveBaseShape shape = new PrimitiveBaseShape(); | 116 | PrimitiveBaseShape shape = new PrimitiveBaseShape(); |
117 | 117 | ||