aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Sqlite/SQLiteExtensions.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-17 16:35:43 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-17 16:35:43 -0400
commite677a57bf1cedc55214b0e457778311b8f1ea5ac (patch)
tree9c0b045279901f5dd4a866f46ce2d378a6d41d68 /MediaBrowser.Server.Implementations/Sqlite/SQLiteExtensions.cs
parent95f471e8c3ab466488cc4c2fba1b15e14e00ee3c (diff)
switch to flat file storage
Diffstat (limited to 'MediaBrowser.Server.Implementations/Sqlite/SQLiteExtensions.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Sqlite/SQLiteExtensions.cs61
1 files changed, 0 insertions, 61 deletions
diff --git a/MediaBrowser.Server.Implementations/Sqlite/SQLiteExtensions.cs b/MediaBrowser.Server.Implementations/Sqlite/SQLiteExtensions.cs
deleted file mode 100644
index 6aed8a352..000000000
--- a/MediaBrowser.Server.Implementations/Sqlite/SQLiteExtensions.cs
+++ /dev/null
@@ -1,61 +0,0 @@
-using System;
-using System.Data;
-using System.Data.SQLite;
-
-namespace MediaBrowser.Server.Implementations.Sqlite
-{
- /// <summary>
- /// Class SQLiteExtensions
- /// </summary>
- static class SQLiteExtensions
- {
- /// <summary>
- /// Adds the param.
- /// </summary>
- /// <param name="cmd">The CMD.</param>
- /// <param name="param">The param.</param>
- /// <returns>SQLiteParameter.</returns>
- /// <exception cref="System.ArgumentNullException"></exception>
- public static SQLiteParameter AddParam(this SQLiteCommand cmd, string param)
- {
- if (string.IsNullOrEmpty(param))
- {
- throw new ArgumentNullException();
- }
-
- var sqliteParam = new SQLiteParameter(param);
- cmd.Parameters.Add(sqliteParam);
- return sqliteParam;
- }
-
- /// <summary>
- /// Adds the param.
- /// </summary>
- /// <param name="cmd">The CMD.</param>
- /// <param name="param">The param.</param>
- /// <param name="data">The data.</param>
- /// <returns>SQLiteParameter.</returns>
- /// <exception cref="System.ArgumentNullException"></exception>
- public static SQLiteParameter AddParam(this SQLiteCommand cmd, string param, object data)
- {
- if (string.IsNullOrEmpty(param))
- {
- throw new ArgumentNullException();
- }
-
- var sqliteParam = AddParam(cmd, param);
- sqliteParam.Value = data;
- return sqliteParam;
- }
-
- /// <summary>
- /// Determines whether the specified conn is open.
- /// </summary>
- /// <param name="conn">The conn.</param>
- /// <returns><c>true</c> if the specified conn is open; otherwise, <c>false</c>.</returns>
- public static bool IsOpen(this SQLiteConnection conn)
- {
- return conn.State == ConnectionState.Open;
- }
- }
-}