aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Storage
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Storage')
-rw-r--r--OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs b/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs
index e2614ee..95772df 100644
--- a/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs
+++ b/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs
@@ -98,11 +98,19 @@ namespace OpenSim.DataStore.MonoSqlite
98 try 98 try
99 { 99 {
100 shapeDa.Fill(ds.Tables["primshapes"]); 100 shapeDa.Fill(ds.Tables["primshapes"]);
101 }
102 catch (Exception)
103 {
104 MainLog.Instance.Verbose("DATASTORE", "Caught fill error on primshapes table");
105 }
106
107 try
108 {
101 terrainDa.Fill(ds.Tables["terrain"]); 109 terrainDa.Fill(ds.Tables["terrain"]);
102 } 110 }
103 catch (Exception) 111 catch (Exception)
104 { 112 {
105 MainLog.Instance.Verbose("DATASTORE", "Caught fill error on primshapes or terrain table"); 113 MainLog.Instance.Verbose("DATASTORE", "Caught fill error on terrain table");
106 } 114 }
107 return; 115 return;
108 } 116 }