diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteUserData.cs | 6 |
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; |