aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-04-30 22:08:57 +0100
committerJustin Clark-Casey (justincc)2010-04-30 22:08:57 +0100
commit139f425f4cf4c720681a10e9cd5399fe0ed3b86c (patch)
tree883478895bd7145c2b8c2653a635396919e4bb25 /OpenSim/Data
parentfix an issue with user appearance where the new sqlite db adapter expects dir... (diff)
downloadopensim-SC_OLD-139f425f4cf4c720681a10e9cd5399fe0ed3b86c.zip
opensim-SC_OLD-139f425f4cf4c720681a10e9cd5399fe0ed3b86c.tar.gz
opensim-SC_OLD-139f425f4cf4c720681a10e9cd5399fe0ed3b86c.tar.bz2
opensim-SC_OLD-139f425f4cf4c720681a10e9cd5399fe0ed3b86c.tar.xz
take out some more sqlite db console debug lines
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/SQLite/SQLiteUserData.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteUserData.cs b/OpenSim/Data/SQLite/SQLiteUserData.cs
index bffc0d0..ea755b0 100644
--- a/OpenSim/Data/SQLite/SQLiteUserData.cs
+++ b/OpenSim/Data/SQLite/SQLiteUserData.cs
@@ -108,32 +108,26 @@ namespace OpenSim.Data.SQLite
108 108
109 lock (ds) 109 lock (ds)
110 { 110 {
111 Console.WriteLine("Here1");
112 ds.Tables.Add(createUsersTable()); 111 ds.Tables.Add(createUsersTable());
113 ds.Tables.Add(createUserAgentsTable()); 112 ds.Tables.Add(createUserAgentsTable());
114 ds.Tables.Add(createUserFriendsTable()); 113 ds.Tables.Add(createUserFriendsTable());
115 ds.Tables.Add(createAvatarAppearanceTable()); 114 ds.Tables.Add(createAvatarAppearanceTable());
116 115
117 Console.WriteLine("Here2");
118 setupUserCommands(da, conn); 116 setupUserCommands(da, conn);
119 da.Fill(ds.Tables["users"]); 117 da.Fill(ds.Tables["users"]);
120 CreateDataSetMapping(da, "users"); 118 CreateDataSetMapping(da, "users");
121 119
122 Console.WriteLine("Here3");
123 setupAgentCommands(dua, conn); 120 setupAgentCommands(dua, conn);
124 dua.Fill(ds.Tables["useragents"]); 121 dua.Fill(ds.Tables["useragents"]);
125 CreateDataSetMapping(dua, "useragents"); 122 CreateDataSetMapping(dua, "useragents");
126 123
127 Console.WriteLine("Here4");
128 setupUserFriendsCommands(daf, conn); 124 setupUserFriendsCommands(daf, conn);
129 daf.Fill(ds.Tables["userfriends"]); 125 daf.Fill(ds.Tables["userfriends"]);
130 CreateDataSetMapping(daf, "userfriends"); 126 CreateDataSetMapping(daf, "userfriends");
131 127
132 Console.WriteLine("Here5");
133 setupAvatarAppearanceCommands(daa, conn); 128 setupAvatarAppearanceCommands(daa, conn);
134 daa.Fill(ds.Tables["avatarappearance"]); 129 daa.Fill(ds.Tables["avatarappearance"]);
135 CreateDataSetMapping(daa, "avatarappearance"); 130 CreateDataSetMapping(daa, "avatarappearance");
136 Console.WriteLine("Here6");
137 } 131 }
138 132
139 return; 133 return;