mirror of
https://github.com/opensim/opensim.git
synced 2026-07-05 02:48:50 +08:00
* 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
This commit is contained in:
15
OpenSim/Framework/Data.MySQLMapper/MySQLDataReader.cs
Normal file
15
OpenSim/Framework/Data.MySQLMapper/MySQLDataReader.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Text;
|
||||
using OpenSim.Framework.Data.Base;
|
||||
|
||||
namespace OpenSim.Framework.Data.MySQLMapper
|
||||
{
|
||||
public class MySQLDataReader : OpenSimDataReader
|
||||
{
|
||||
public MySQLDataReader(IDataReader source) : base(source)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user