diff options
author | UbitUmarov | 2015-08-23 01:33:56 +0100 |
---|---|---|
committer | UbitUmarov | 2015-08-23 01:33:56 +0100 |
commit | a916ef570e8d5e01f263896fc5d913cd5725dbcb (patch) | |
tree | 055ca8ea33ebd1c3fac33bdd5f3db171fcfac026 /OpenSim/Data | |
parent | Warp3D map now seems to work (diff) | |
download | opensim-SC-a916ef570e8d5e01f263896fc5d913cd5725dbcb.zip opensim-SC-a916ef570e8d5e01f263896fc5d913cd5725dbcb.tar.gz opensim-SC-a916ef570e8d5e01f263896fc5d913cd5725dbcb.tar.bz2 opensim-SC-a916ef570e8d5e01f263896fc5d913cd5725dbcb.tar.xz |
fix mySQL ( ignoring other dbs )
Diffstat (limited to 'OpenSim/Data')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLSimulationData.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/MySQLSimulationData.cs b/OpenSim/Data/MySQL/MySQLSimulationData.cs index f910e44..f3c0160 100644 --- a/OpenSim/Data/MySQL/MySQLSimulationData.cs +++ b/OpenSim/Data/MySQL/MySQLSimulationData.cs | |||
@@ -613,12 +613,13 @@ namespace OpenSim.Data.MySQL | |||
613 | { | 613 | { |
614 | cmd2.CommandText = "insert into terrain (RegionUUID, " + | 614 | cmd2.CommandText = "insert into terrain (RegionUUID, " + |
615 | "Revision, Heightfield) values (?RegionUUID, " + | 615 | "Revision, Heightfield) values (?RegionUUID, " + |
616 | "1, ?Heightfield)"; | 616 | "?Revision, ?Heightfield)"; |
617 | 617 | ||
618 | int terrainDBRevision; | 618 | int terrainDBRevision; |
619 | Array terrainDBblob; | 619 | Array terrainDBblob; |
620 | terrData.GetDatabaseBlob(out terrainDBRevision, out terrainDBblob); | 620 | terrData.GetDatabaseBlob(out terrainDBRevision, out terrainDBblob); |
621 | 621 | ||
622 | cmd2.Parameters.AddWithValue("RegionUUID", regionID.ToString()); | ||
622 | cmd2.Parameters.AddWithValue("Revision", terrainDBRevision); | 623 | cmd2.Parameters.AddWithValue("Revision", terrainDBRevision); |
623 | cmd2.Parameters.AddWithValue("Heightfield", terrainDBblob); | 624 | cmd2.Parameters.AddWithValue("Heightfield", terrainDBblob); |
624 | 625 | ||