Author: gburt
Date: Thu Jan 17 21:55:24 2008
New Revision: 2981
URL: http://svn.gnome.org/viewvc/banshee?rev=2981&view=rev
Log:
2008-01-17 Gabriel Burt <[EMAIL PROTECTED]>
* src/Core/Hyena/Hyena.Data.Sqlite/CacheableDatabaseModel.cs: Remove.
* src/Core/Hyena/Hyena.Data.Sqlite/DatabaseModelCache.cs: Time FetchSet.
Removed:
trunk/banshee/src/Core/Hyena/Hyena.Data.Sqlite/CacheableDatabaseModel.cs
Modified:
trunk/banshee/ChangeLog
trunk/banshee/src/Core/Hyena/Hyena.Data.Sqlite/DatabaseModelCache.cs
Modified: trunk/banshee/src/Core/Hyena/Hyena.Data.Sqlite/DatabaseModelCache.cs
==============================================================================
--- trunk/banshee/src/Core/Hyena/Hyena.Data.Sqlite/DatabaseModelCache.cs
(original)
+++ trunk/banshee/src/Core/Hyena/Hyena.Data.Sqlite/DatabaseModelCache.cs
Thu Jan 17 21:55:24 2008
@@ -114,7 +114,7 @@
protected override void FetchSet (int offset, int limit)
{
- //using (new Timer (String.Format ("Fetching set for {0}",
db_model))) {
+ using (new Timer (String.Format ("Fetching set for {0}",
db_model))) {
select_range_command.ApplyValues (uid, offset, limit);
using (IDataReader reader = connection.ExecuteReader
(select_range_command)) {
int i = offset;
@@ -127,7 +127,7 @@
i++;
}
}
- //}
+ }
}
protected void UpdateCount ()
_______________________________________________
SVN-commits-list mailing list (read only)
http://mail.gnome.org/mailman/listinfo/svn-commits-list
Want to limit the commits to a few modules? Go to above URL, log in to edit
your options and select the modules ('topics') you want.
Module maintainer? It is possible to set the reply-to to your development
mailing list. Email [EMAIL PROTECTED] if interested.