コード例 #1
0
ファイル: Shuffler.cs プロジェクト: fatman2021/gnome-apps
 public void RecordShuffleModifications (DatabaseTrackListModel model, RangeCollection.Range range, ShuffleModificationType type)
 {
     ServiceManager.DbConnection.Execute (String.Format ("{0} SELECT ?, ?, ?, {1}", modify_sql, model.TrackIdsSql),
                                          DbId, DateTime.Now, (int)type, model.CacheId, range.Start, range.Count);
 }
コード例 #2
0
ファイル: Shuffler.cs プロジェクト: thoja21/banshee-1
 public void RecordShuffleModifications(DatabaseTrackListModel model, RangeCollection.Range range, ShuffleModificationType type)
 {
     ServiceManager.DbConnection.Execute(String.Format("{0} SELECT ?, ?, ?, {1}", modify_sql, model.TrackIdsSql),
                                         DbId, DateTime.Now, (int)type, model.CacheId, range.Start, range.Count);
 }
コード例 #3
0
ファイル: Shuffler.cs プロジェクト: fatman2021/gnome-apps
 public void RecordShuffleModification (int trackId, ShuffleModificationType type)
 {
     ServiceManager.DbConnection.Execute (add_discard_cmd, this.DbId, DateTime.Now, (int)type, trackId);
 }
コード例 #4
0
ファイル: Shuffler.cs プロジェクト: thoja21/banshee-1
 public void RecordShuffleModification(long trackId, ShuffleModificationType type)
 {
     ServiceManager.DbConnection.Execute(add_discard_cmd, this.DbId, DateTime.Now, (int)type, trackId);
 }