diff options
-rw-r--r-- | OpenSim/Data/MySQL/MySQLSimulationData.cs | 4 | ||||
-rw-r--r-- | TESTING.txt | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/OpenSim/Data/MySQL/MySQLSimulationData.cs b/OpenSim/Data/MySQL/MySQLSimulationData.cs index a48b91b..b94f6ac 100644 --- a/OpenSim/Data/MySQL/MySQLSimulationData.cs +++ b/OpenSim/Data/MySQL/MySQLSimulationData.cs | |||
@@ -1912,11 +1912,11 @@ namespace OpenSim.Data.MySQL | |||
1912 | 1912 | ||
1913 | cmd.Parameters.Clear(); | 1913 | cmd.Parameters.Clear(); |
1914 | 1914 | ||
1915 | cmd.CommandText = "insert into spawn_points (RegionID, PointX, PointY, PointZ) values ( ?EstateID, ?PointX, ?PointY,?PointZ)"; | 1915 | cmd.CommandText = "insert into spawn_points (RegionID, PointX, PointY, PointZ) values ( ?RegionID, ?PointX, ?PointY,?PointZ)"; |
1916 | 1916 | ||
1917 | foreach (Vector3 p in rs.SpawnPoints()) | 1917 | foreach (Vector3 p in rs.SpawnPoints()) |
1918 | { | 1918 | { |
1919 | cmd.Parameters.AddWithValue("?EstateID", rs.RegionUUID.ToString()); | 1919 | cmd.Parameters.AddWithValue("?RegionID", rs.RegionUUID.ToString()); |
1920 | cmd.Parameters.AddWithValue("?PointX", p.X); | 1920 | cmd.Parameters.AddWithValue("?PointX", p.X); |
1921 | cmd.Parameters.AddWithValue("?PointY", p.Y); | 1921 | cmd.Parameters.AddWithValue("?PointY", p.Y); |
1922 | cmd.Parameters.AddWithValue("?PointZ", p.Z); | 1922 | cmd.Parameters.AddWithValue("?PointZ", p.Z); |
diff --git a/TESTING.txt b/TESTING.txt index 54fc976..08a0698 100644 --- a/TESTING.txt +++ b/TESTING.txt | |||
@@ -69,3 +69,6 @@ Example | |||
69 | 69 | ||
70 | nunit-console2 OpenSim.Framework.Tests.dll (on linux) | 70 | nunit-console2 OpenSim.Framework.Tests.dll (on linux) |
71 | nunit-console OpenSim.Framework.Tests.dll (on windows) | 71 | nunit-console OpenSim.Framework.Tests.dll (on windows) |
72 | |||
73 | See the file OpenSim/Data/Tests/Resources/TestDataConnections.ini | ||
74 | for information to setup testing for data | ||