mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
add db helpers
This commit is contained in:
parent
d821da7c0b
commit
b06d1851da
@ -137,5 +137,45 @@ namespace Emby.Server.Implementations.Data
|
|||||||
|
|
||||||
db.Execute(commandText, paramList.ToArray());
|
db.Execute(commandText, paramList.ToArray());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static bool IsDBNull(this IReadOnlyList<IResultSetValue> result, int index)
|
||||||
|
{
|
||||||
|
return result[index].SQLiteType == SQLiteType.Null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static string GetString(this IReadOnlyList<IResultSetValue> result, int index)
|
||||||
|
{
|
||||||
|
return result[index].ToString();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static bool GetBoolean(this IReadOnlyList<IResultSetValue> result, int index)
|
||||||
|
{
|
||||||
|
return result[index].ToBool();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int GetInt32(this IReadOnlyList<IResultSetValue> result, int index)
|
||||||
|
{
|
||||||
|
return result[index].ToInt();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static long GetInt64(this IReadOnlyList<IResultSetValue> result, int index)
|
||||||
|
{
|
||||||
|
return result[index].ToInt64();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static float GetFloat(this IReadOnlyList<IResultSetValue> result, int index)
|
||||||
|
{
|
||||||
|
return result[index].ToFloat();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static DateTime GetDateTime(this IReadOnlyList<IResultSetValue> result, int index)
|
||||||
|
{
|
||||||
|
return result[index].ReadDateTime();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Guid GetGuid(this IReadOnlyList<IResultSetValue> result, int index)
|
||||||
|
{
|
||||||
|
return result[index].ReadGuid();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user