diff options
author | lbsa71 | 2008-04-02 13:06:18 +0000 |
---|---|---|
committer | lbsa71 | 2008-04-02 13:06:18 +0000 |
commit | 667ebc8ea29ba93060eee2506f2875ab78ab6216 (patch) | |
tree | d630c9c98fdbbe901b4d941dff25e6bdc77d4772 /OpenSim/Framework/Data.MySQLMapper/MySQLDataReader.cs | |
parent | Set default terrain to complete flat terrain (at 26 height). Even flat terrai... (diff) | |
download | opensim-SC-667ebc8ea29ba93060eee2506f2875ab78ab6216.zip opensim-SC-667ebc8ea29ba93060eee2506f2875ab78ab6216.tar.gz opensim-SC-667ebc8ea29ba93060eee2506f2875ab78ab6216.tar.bz2 opensim-SC-667ebc8ea29ba93060eee2506f2875ab78ab6216.tar.xz |
* Reworked Data Framework so that MSSQL works
* Introduced uint as field type
* Removed what should be superfluous Guid handling
* Introduced stub MySQLDataReader if we need to fix the Guid handling anyway
Diffstat (limited to 'OpenSim/Framework/Data.MySQLMapper/MySQLDataReader.cs')
-rw-r--r-- | OpenSim/Framework/Data.MySQLMapper/MySQLDataReader.cs | 15 |
1 files changed, 15 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 | } | ||