From 44a7db0e44d175fcb854b7bfd11d3b97ed6b934c Mon Sep 17 00:00:00 2001 From: Tleiades Hax Date: Wed, 17 Oct 2007 09:36:11 +0000 Subject: Renamed SimProfileData to RegionProfileData --- OpenSim/Framework/Data.SQLite/SQLiteManager.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Framework/Data.SQLite/SQLiteManager.cs') diff --git a/OpenSim/Framework/Data.SQLite/SQLiteManager.cs b/OpenSim/Framework/Data.SQLite/SQLiteManager.cs index f73f480..5954fba 100644 --- a/OpenSim/Framework/Data.SQLite/SQLiteManager.cs +++ b/OpenSim/Framework/Data.SQLite/SQLiteManager.cs @@ -161,9 +161,9 @@ namespace OpenSim.Framework.Data.SQLite /// /// An active database reader /// A region profile - public SimProfileData getRow(IDataReader reader) + public RegionProfileData getRow(IDataReader reader) { - SimProfileData retval = new SimProfileData(); + RegionProfileData retval = new RegionProfileData(); if (reader.Read()) { @@ -217,7 +217,7 @@ namespace OpenSim.Framework.Data.SQLite /// /// The region to insert /// Success? - public bool insertRow(SimProfileData profile) + public bool insertRow(RegionProfileData profile) { string sql = "REPLACE INTO regions VALUES (regionHandle, regionName, uuid, regionRecvKey, regionSecret, regionSendKey, regionDataURI, "; sql += "serverIP, serverPort, serverURI, locX, locY, locZ, eastOverrideHandle, westOverrideHandle, southOverrideHandle, northOverrideHandle, regionAssetURI, regionAssetRecvKey, "; -- cgit v1.1