diff options
author | Teravus Ovares | 2007-12-27 18:49:16 +0000 |
---|---|---|
committer | Teravus Ovares | 2007-12-27 18:49:16 +0000 |
commit | d82ed9a8c5aff8c95ce1c9aa092d68a4f649fa07 (patch) | |
tree | 3f9893938093c9c45ed8929890e42fb9f2cb3e35 /OpenSim/Region/Storage/OpenSim.DataStore.MSSQL | |
parent | Move hardcoded texture library inventory items out into OpenSimLibrary/xml. ... (diff) | |
download | opensim-SC-d82ed9a8c5aff8c95ce1c9aa092d68a4f649fa07.zip opensim-SC-d82ed9a8c5aff8c95ce1c9aa092d68a4f649fa07.tar.gz opensim-SC-d82ed9a8c5aff8c95ce1c9aa092d68a4f649fa07.tar.bz2 opensim-SC-d82ed9a8c5aff8c95ce1c9aa092d68a4f649fa07.tar.xz |
* Fixed MonoSQLite Update Table routine
* Charles, this will fix the red issue.
* Same situation, the first run updates the tables (and gives you a ton of red errors), the second run and everything works as expected.
Diffstat (limited to 'OpenSim/Region/Storage/OpenSim.DataStore.MSSQL')
-rw-r--r-- | OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs b/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs index 0a48126..60aeb83 100644 --- a/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs +++ b/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs | |||
@@ -522,12 +522,12 @@ namespace OpenSim.DataStore.MSSQL | |||
522 | { | 522 | { |
523 | prim.SetSitTargetLL(new LLVector3( | 523 | prim.SetSitTargetLL(new LLVector3( |
524 | Convert.ToSingle(row["SitTargetOffsetX"]), | 524 | Convert.ToSingle(row["SitTargetOffsetX"]), |
525 | Convert.ToSingle(row["SitTargetOffsetX"]), | 525 | Convert.ToSingle(row["SitTargetOffsetY"]), |
526 | Convert.ToSingle(row["SitTargetOffsetZ"])), new LLQuaternion( | 526 | Convert.ToSingle(row["SitTargetOffsetZ"])), new LLQuaternion( |
527 | Convert.ToSingle(row["SitTargetOrientW"]), | ||
528 | Convert.ToSingle(row["SitTargetOrientX"]), | 527 | Convert.ToSingle(row["SitTargetOrientX"]), |
529 | Convert.ToSingle(row["SitTargetOrientY"]), | 528 | Convert.ToSingle(row["SitTargetOrientY"]), |
530 | Convert.ToSingle(row["SitTargetOrientX"]))); | 529 | Convert.ToSingle(row["SitTargetOrientZ"]), |
530 | Convert.ToSingle(row["SitTargetOrientW"]))); | ||
531 | } | 531 | } |
532 | catch (System.InvalidCastException) | 532 | catch (System.InvalidCastException) |
533 | { | 533 | { |