diff options
Diffstat (limited to 'OpenSim/Framework/Data/OpenSimTableMapper.cs')
-rw-r--r-- | OpenSim/Framework/Data/OpenSimTableMapper.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Data/OpenSimTableMapper.cs b/OpenSim/Framework/Data/OpenSimTableMapper.cs index c72f523..b6406b6 100644 --- a/OpenSim/Framework/Data/OpenSimTableMapper.cs +++ b/OpenSim/Framework/Data/OpenSimTableMapper.cs | |||
@@ -3,9 +3,9 @@ using TribalMedia.Framework.Data; | |||
3 | 3 | ||
4 | namespace OpenSim.Framework.Data | 4 | namespace OpenSim.Framework.Data |
5 | { | 5 | { |
6 | public abstract class OpenSimTableMapper<TRowMapper, TPrimaryKey> : ObjectTableMapper<TRowMapper, TPrimaryKey> | 6 | public abstract class OpenSimTableMapper<TRowMapper, TPrimaryKey> : BaseTableMapper<TRowMapper, TPrimaryKey> |
7 | { | 7 | { |
8 | public OpenSimTableMapper(DatabaseMapper database, string tableName) : base(database, tableName) | 8 | public OpenSimTableMapper(BaseDatabaseConnector database, string tableName) : base(database, tableName) |
9 | { | 9 | { |
10 | } | 10 | } |
11 | 11 | ||