2021-05-20 12:28:18 -07:00
|
|
|
#nullable disable
|
2019-11-01 10:38:54 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 12:54:44 -07:00
|
|
|
using System;
|
2016-11-19 14:07:01 -07:00
|
|
|
using System.Collections.Generic;
|
2021-02-12 16:39:18 -07:00
|
|
|
using System.Diagnostics;
|
2016-11-18 01:39:20 -07:00
|
|
|
using System.Globalization;
|
|
|
|
using SQLitePCL.pretty;
|
|
|
|
|
|
|
|
namespace Emby.Server.Implementations.Data
|
|
|
|
{
|
|
|
|
public static class SqliteExtensions
|
|
|
|
{
|
2019-10-11 09:16:42 -07:00
|
|
|
private const string DatetimeFormatUtc = "yyyy-MM-dd HH:mm:ss.FFFFFFFK";
|
|
|
|
private const string DatetimeFormatLocal = "yyyy-MM-dd HH:mm:ss.FFFFFFF";
|
|
|
|
|
2019-09-25 04:24:39 -07:00
|
|
|
/// <summary>
|
|
|
|
/// An array of ISO-8601 DateTime formats that we support parsing.
|
|
|
|
/// </summary>
|
|
|
|
private static readonly string[] _datetimeFormats = new string[]
|
|
|
|
{
|
|
|
|
"THHmmssK",
|
|
|
|
"THHmmK",
|
|
|
|
"HH:mm:ss.FFFFFFFK",
|
|
|
|
"HH:mm:ssK",
|
|
|
|
"HH:mmK",
|
2019-10-11 09:16:42 -07:00
|
|
|
DatetimeFormatUtc,
|
2019-09-25 04:24:39 -07:00
|
|
|
"yyyy-MM-dd HH:mm:ssK",
|
|
|
|
"yyyy-MM-dd HH:mmK",
|
|
|
|
"yyyy-MM-ddTHH:mm:ss.FFFFFFFK",
|
|
|
|
"yyyy-MM-ddTHH:mmK",
|
|
|
|
"yyyy-MM-ddTHH:mm:ssK",
|
|
|
|
"yyyyMMddHHmmssK",
|
|
|
|
"yyyyMMddHHmmK",
|
|
|
|
"yyyyMMddTHHmmssFFFFFFFK",
|
|
|
|
"THHmmss",
|
|
|
|
"THHmm",
|
|
|
|
"HH:mm:ss.FFFFFFF",
|
|
|
|
"HH:mm:ss",
|
|
|
|
"HH:mm",
|
2019-10-11 09:16:42 -07:00
|
|
|
DatetimeFormatLocal,
|
2019-09-25 04:24:39 -07:00
|
|
|
"yyyy-MM-dd HH:mm:ss",
|
|
|
|
"yyyy-MM-dd HH:mm",
|
|
|
|
"yyyy-MM-ddTHH:mm:ss.FFFFFFF",
|
|
|
|
"yyyy-MM-ddTHH:mm",
|
|
|
|
"yyyy-MM-ddTHH:mm:ss",
|
|
|
|
"yyyyMMddHHmmss",
|
|
|
|
"yyyyMMddHHmm",
|
|
|
|
"yyyyMMddTHHmmssFFFFFFF",
|
|
|
|
"yyyy-MM-dd",
|
|
|
|
"yyyyMMdd",
|
|
|
|
"yy-MM-dd"
|
|
|
|
};
|
|
|
|
|
2016-11-18 01:39:20 -07:00
|
|
|
public static void RunQueries(this SQLiteDatabaseConnection connection, string[] queries)
|
|
|
|
{
|
2022-10-06 11:21:23 -07:00
|
|
|
ArgumentNullException.ThrowIfNull(queries);
|
2016-11-18 01:39:20 -07:00
|
|
|
|
|
|
|
connection.RunInTransaction(conn =>
|
|
|
|
{
|
2021-02-12 16:39:18 -07:00
|
|
|
conn.ExecuteAll(string.Join(';', queries));
|
2016-11-18 01:39:20 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-05-21 10:35:00 -07:00
|
|
|
public static Guid ReadGuidFromBlob(this ResultSetValue result)
|
2016-11-18 01:39:20 -07:00
|
|
|
{
|
2019-10-11 09:22:29 -07:00
|
|
|
return new Guid(result.ToBlob());
|
2016-11-18 01:39:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public static string ToDateTimeParamValue(this DateTime dateValue)
|
|
|
|
{
|
|
|
|
var kind = DateTimeKind.Utc;
|
|
|
|
|
|
|
|
return (dateValue.Kind == DateTimeKind.Unspecified)
|
|
|
|
? DateTime.SpecifyKind(dateValue, kind).ToString(
|
|
|
|
GetDateTimeKindFormat(kind),
|
|
|
|
CultureInfo.InvariantCulture)
|
|
|
|
: dateValue.ToString(
|
|
|
|
GetDateTimeKindFormat(dateValue.Kind),
|
|
|
|
CultureInfo.InvariantCulture);
|
|
|
|
}
|
|
|
|
|
2019-09-25 04:24:39 -07:00
|
|
|
private static string GetDateTimeKindFormat(DateTimeKind kind)
|
2019-10-11 09:16:42 -07:00
|
|
|
=> (kind == DateTimeKind.Utc) ? DatetimeFormatUtc : DatetimeFormatLocal;
|
2016-11-18 01:39:20 -07:00
|
|
|
|
2021-05-21 10:35:00 -07:00
|
|
|
public static DateTime ReadDateTime(this ResultSetValue result)
|
2016-11-18 01:39:20 -07:00
|
|
|
{
|
|
|
|
var dateText = result.ToString();
|
|
|
|
|
|
|
|
return DateTime.ParseExact(
|
2019-09-25 04:24:39 -07:00
|
|
|
dateText,
|
|
|
|
_datetimeFormats,
|
2016-11-18 01:39:20 -07:00
|
|
|
DateTimeFormatInfo.InvariantInfo,
|
2021-09-20 16:21:45 -07:00
|
|
|
DateTimeStyles.AdjustToUniversal);
|
2016-11-18 01:39:20 -07:00
|
|
|
}
|
2016-11-18 02:28:39 -07:00
|
|
|
|
2021-05-21 10:35:00 -07:00
|
|
|
public static bool TryReadDateTime(this IReadOnlyList<ResultSetValue> reader, int index, out DateTime result)
|
2018-09-12 10:26:21 -07:00
|
|
|
{
|
2021-05-16 05:49:11 -07:00
|
|
|
var item = reader[index];
|
|
|
|
if (item.IsDbNull())
|
|
|
|
{
|
2021-05-19 10:33:24 -07:00
|
|
|
result = default;
|
2021-05-16 05:49:11 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
var dateText = item.ToString();
|
2018-09-12 10:26:21 -07:00
|
|
|
|
2021-09-20 16:21:45 -07:00
|
|
|
if (DateTime.TryParseExact(dateText, _datetimeFormats, DateTimeFormatInfo.InvariantInfo, DateTimeStyles.AdjustToUniversal, out var dateTimeResult))
|
2018-09-12 10:26:21 -07:00
|
|
|
{
|
2021-09-20 16:21:45 -07:00
|
|
|
result = dateTimeResult;
|
2021-05-16 05:49:11 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-19 10:33:24 -07:00
|
|
|
result = default;
|
2021-05-16 05:49:11 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-05-21 10:35:00 -07:00
|
|
|
public static bool TryGetGuid(this IReadOnlyList<ResultSetValue> reader, int index, out Guid result)
|
2021-05-16 05:49:11 -07:00
|
|
|
{
|
|
|
|
var item = reader[index];
|
|
|
|
if (item.IsDbNull())
|
|
|
|
{
|
2021-05-19 10:33:24 -07:00
|
|
|
result = default;
|
2021-05-16 05:49:11 -07:00
|
|
|
return false;
|
2018-09-12 10:26:21 -07:00
|
|
|
}
|
|
|
|
|
2021-05-16 05:49:11 -07:00
|
|
|
result = item.ReadGuidFromBlob();
|
|
|
|
return true;
|
2018-09-12 10:26:21 -07:00
|
|
|
}
|
|
|
|
|
2021-05-21 10:35:00 -07:00
|
|
|
public static bool IsDbNull(this ResultSetValue result)
|
2016-11-19 19:43:21 -07:00
|
|
|
{
|
2021-05-16 05:49:11 -07:00
|
|
|
return result.SQLiteType == SQLiteType.Null;
|
2016-11-19 19:43:21 -07:00
|
|
|
}
|
|
|
|
|
2021-05-21 10:35:00 -07:00
|
|
|
public static string GetString(this IReadOnlyList<ResultSetValue> result, int index)
|
2016-11-19 19:43:21 -07:00
|
|
|
{
|
|
|
|
return result[index].ToString();
|
|
|
|
}
|
|
|
|
|
2021-05-21 10:35:00 -07:00
|
|
|
public static bool TryGetString(this IReadOnlyList<ResultSetValue> reader, int index, out string result)
|
2021-05-16 05:49:11 -07:00
|
|
|
{
|
|
|
|
result = null;
|
|
|
|
var item = reader[index];
|
|
|
|
if (item.IsDbNull())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = item.ToString();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-21 10:35:00 -07:00
|
|
|
public static bool GetBoolean(this IReadOnlyList<ResultSetValue> result, int index)
|
2016-11-19 19:43:21 -07:00
|
|
|
{
|
|
|
|
return result[index].ToBool();
|
|
|
|
}
|
|
|
|
|
2021-05-21 10:35:00 -07:00
|
|
|
public static bool TryGetBoolean(this IReadOnlyList<ResultSetValue> reader, int index, out bool result)
|
2021-05-16 05:49:11 -07:00
|
|
|
{
|
|
|
|
var item = reader[index];
|
|
|
|
if (item.IsDbNull())
|
|
|
|
{
|
2021-05-18 23:51:46 -07:00
|
|
|
result = default;
|
2021-05-16 05:49:11 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = item.ToBool();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-21 10:35:00 -07:00
|
|
|
public static bool TryGetInt32(this IReadOnlyList<ResultSetValue> reader, int index, out int result)
|
2016-11-19 19:43:21 -07:00
|
|
|
{
|
2021-05-16 05:49:11 -07:00
|
|
|
var item = reader[index];
|
|
|
|
if (item.IsDbNull())
|
|
|
|
{
|
2021-05-18 23:51:46 -07:00
|
|
|
result = default;
|
2021-05-16 05:49:11 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = item.ToInt();
|
|
|
|
return true;
|
2016-11-19 19:43:21 -07:00
|
|
|
}
|
|
|
|
|
2021-05-21 10:35:00 -07:00
|
|
|
public static long GetInt64(this IReadOnlyList<ResultSetValue> result, int index)
|
2016-11-19 19:43:21 -07:00
|
|
|
{
|
|
|
|
return result[index].ToInt64();
|
|
|
|
}
|
|
|
|
|
2021-05-21 10:35:00 -07:00
|
|
|
public static bool TryGetInt64(this IReadOnlyList<ResultSetValue> reader, int index, out long result)
|
2021-05-16 05:49:11 -07:00
|
|
|
{
|
|
|
|
var item = reader[index];
|
|
|
|
if (item.IsDbNull())
|
|
|
|
{
|
2021-05-18 23:51:46 -07:00
|
|
|
result = default;
|
2021-05-16 05:49:11 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = item.ToInt64();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-21 10:35:00 -07:00
|
|
|
public static bool TryGetSingle(this IReadOnlyList<ResultSetValue> reader, int index, out float result)
|
2021-05-16 05:49:11 -07:00
|
|
|
{
|
|
|
|
var item = reader[index];
|
|
|
|
if (item.IsDbNull())
|
|
|
|
{
|
2021-05-18 23:51:46 -07:00
|
|
|
result = default;
|
2021-05-16 05:49:11 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = item.ToFloat();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-21 10:35:00 -07:00
|
|
|
public static bool TryGetDouble(this IReadOnlyList<ResultSetValue> reader, int index, out double result)
|
2016-11-19 19:43:21 -07:00
|
|
|
{
|
2021-05-16 05:49:11 -07:00
|
|
|
var item = reader[index];
|
|
|
|
if (item.IsDbNull())
|
|
|
|
{
|
2021-05-18 23:51:46 -07:00
|
|
|
result = default;
|
2021-05-16 05:49:11 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = item.ToDouble();
|
|
|
|
return true;
|
2016-11-19 19:43:21 -07:00
|
|
|
}
|
|
|
|
|
2021-05-21 10:35:00 -07:00
|
|
|
public static Guid GetGuid(this IReadOnlyList<ResultSetValue> result, int index)
|
2016-11-19 19:43:21 -07:00
|
|
|
{
|
2017-05-07 13:02:32 -07:00
|
|
|
return result[index].ReadGuidFromBlob();
|
2016-11-19 19:43:21 -07:00
|
|
|
}
|
|
|
|
|
2021-02-12 16:39:18 -07:00
|
|
|
[Conditional("DEBUG")]
|
2016-11-20 02:46:07 -07:00
|
|
|
private static void CheckName(string name)
|
|
|
|
{
|
2019-09-25 04:24:39 -07:00
|
|
|
throw new ArgumentException("Invalid param name: " + name, nameof(name));
|
2016-11-20 02:46:07 -07:00
|
|
|
}
|
|
|
|
|
2016-11-20 00:10:07 -07:00
|
|
|
public static void TryBind(this IStatement statement, string name, double value)
|
2016-11-19 23:13:35 -07:00
|
|
|
{
|
2019-01-17 10:47:41 -07:00
|
|
|
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
|
2016-11-19 23:13:35 -07:00
|
|
|
{
|
|
|
|
bindParam.Bind(value);
|
|
|
|
}
|
2016-11-20 02:46:07 -07:00
|
|
|
else
|
|
|
|
{
|
|
|
|
CheckName(name);
|
|
|
|
}
|
2016-11-19 23:13:35 -07:00
|
|
|
}
|
|
|
|
|
2016-11-20 00:10:07 -07:00
|
|
|
public static void TryBind(this IStatement statement, string name, string value)
|
2016-11-19 19:43:21 -07:00
|
|
|
{
|
2019-01-17 10:47:41 -07:00
|
|
|
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
|
2016-11-19 22:59:36 -07:00
|
|
|
{
|
2022-12-05 07:00:20 -07:00
|
|
|
if (value is null)
|
2016-11-20 02:46:07 -07:00
|
|
|
{
|
|
|
|
bindParam.BindNull();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bindParam.Bind(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CheckName(name);
|
2016-11-19 22:59:36 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-20 00:10:07 -07:00
|
|
|
public static void TryBind(this IStatement statement, string name, bool value)
|
2016-11-19 22:59:36 -07:00
|
|
|
{
|
2019-01-17 10:47:41 -07:00
|
|
|
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
|
2016-11-19 23:13:35 -07:00
|
|
|
{
|
|
|
|
bindParam.Bind(value);
|
|
|
|
}
|
2016-11-20 02:46:07 -07:00
|
|
|
else
|
|
|
|
{
|
|
|
|
CheckName(name);
|
|
|
|
}
|
2016-11-19 23:13:35 -07:00
|
|
|
}
|
|
|
|
|
2016-11-20 00:10:07 -07:00
|
|
|
public static void TryBind(this IStatement statement, string name, float value)
|
2016-11-19 23:13:35 -07:00
|
|
|
{
|
2019-01-17 10:47:41 -07:00
|
|
|
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
|
2016-11-19 23:13:35 -07:00
|
|
|
{
|
|
|
|
bindParam.Bind(value);
|
|
|
|
}
|
2016-11-20 02:46:07 -07:00
|
|
|
else
|
|
|
|
{
|
|
|
|
CheckName(name);
|
|
|
|
}
|
2016-11-19 23:13:35 -07:00
|
|
|
}
|
|
|
|
|
2016-11-20 00:10:07 -07:00
|
|
|
public static void TryBind(this IStatement statement, string name, int value)
|
2016-11-19 23:13:35 -07:00
|
|
|
{
|
2019-01-17 10:47:41 -07:00
|
|
|
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
|
2016-11-19 22:59:36 -07:00
|
|
|
{
|
|
|
|
bindParam.Bind(value);
|
|
|
|
}
|
2016-11-20 02:46:07 -07:00
|
|
|
else
|
|
|
|
{
|
|
|
|
CheckName(name);
|
|
|
|
}
|
2016-11-19 22:59:36 -07:00
|
|
|
}
|
|
|
|
|
2016-11-20 00:10:07 -07:00
|
|
|
public static void TryBind(this IStatement statement, string name, Guid value)
|
2016-11-19 22:59:36 -07:00
|
|
|
{
|
2019-01-17 10:47:41 -07:00
|
|
|
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
|
2016-11-20 00:10:07 -07:00
|
|
|
{
|
2020-09-16 05:16:44 -07:00
|
|
|
Span<byte> byteValue = stackalloc byte[16];
|
|
|
|
value.TryWriteBytes(byteValue);
|
|
|
|
bindParam.Bind(byteValue);
|
2016-11-20 00:10:07 -07:00
|
|
|
}
|
2016-11-20 02:46:07 -07:00
|
|
|
else
|
|
|
|
{
|
|
|
|
CheckName(name);
|
|
|
|
}
|
2016-11-20 00:10:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void TryBind(this IStatement statement, string name, DateTime value)
|
|
|
|
{
|
2019-01-17 10:47:41 -07:00
|
|
|
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
|
2016-11-20 00:10:07 -07:00
|
|
|
{
|
|
|
|
bindParam.Bind(value.ToDateTimeParamValue());
|
|
|
|
}
|
2016-11-20 02:46:07 -07:00
|
|
|
else
|
|
|
|
{
|
|
|
|
CheckName(name);
|
|
|
|
}
|
2016-11-20 00:10:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void TryBind(this IStatement statement, string name, long value)
|
|
|
|
{
|
2019-01-17 10:47:41 -07:00
|
|
|
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
|
2016-11-19 22:59:36 -07:00
|
|
|
{
|
|
|
|
bindParam.Bind(value);
|
|
|
|
}
|
2016-11-20 02:46:07 -07:00
|
|
|
else
|
|
|
|
{
|
|
|
|
CheckName(name);
|
|
|
|
}
|
2016-11-19 22:59:36 -07:00
|
|
|
}
|
|
|
|
|
2020-04-03 11:59:38 -07:00
|
|
|
public static void TryBind(this IStatement statement, string name, ReadOnlySpan<byte> value)
|
2016-11-19 22:59:36 -07:00
|
|
|
{
|
2019-01-17 10:47:41 -07:00
|
|
|
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
|
2016-11-20 00:10:07 -07:00
|
|
|
{
|
|
|
|
bindParam.Bind(value);
|
|
|
|
}
|
2016-11-20 02:46:07 -07:00
|
|
|
else
|
|
|
|
{
|
|
|
|
CheckName(name);
|
|
|
|
}
|
2016-11-20 00:10:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void TryBindNull(this IStatement statement, string name)
|
|
|
|
{
|
2019-01-17 10:47:41 -07:00
|
|
|
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
|
2016-11-19 22:59:36 -07:00
|
|
|
{
|
|
|
|
bindParam.BindNull();
|
|
|
|
}
|
2016-11-20 02:46:07 -07:00
|
|
|
else
|
|
|
|
{
|
|
|
|
CheckName(name);
|
|
|
|
}
|
2016-11-19 22:59:36 -07:00
|
|
|
}
|
|
|
|
|
2016-11-20 00:10:07 -07:00
|
|
|
public static void TryBind(this IStatement statement, string name, DateTime? value)
|
|
|
|
{
|
|
|
|
if (value.HasValue)
|
|
|
|
{
|
|
|
|
TryBind(statement, name, value.Value);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TryBindNull(statement, name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void TryBind(this IStatement statement, string name, Guid? value)
|
|
|
|
{
|
|
|
|
if (value.HasValue)
|
|
|
|
{
|
|
|
|
TryBind(statement, name, value.Value);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TryBindNull(statement, name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-23 10:09:50 -07:00
|
|
|
public static void TryBind(this IStatement statement, string name, double? value)
|
|
|
|
{
|
|
|
|
if (value.HasValue)
|
|
|
|
{
|
|
|
|
TryBind(statement, name, value.Value);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TryBindNull(statement, name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-20 00:10:07 -07:00
|
|
|
public static void TryBind(this IStatement statement, string name, int? value)
|
|
|
|
{
|
|
|
|
if (value.HasValue)
|
|
|
|
{
|
|
|
|
TryBind(statement, name, value.Value);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TryBindNull(statement, name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void TryBind(this IStatement statement, string name, float? value)
|
|
|
|
{
|
|
|
|
if (value.HasValue)
|
|
|
|
{
|
|
|
|
TryBind(statement, name, value.Value);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TryBindNull(statement, name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void TryBind(this IStatement statement, string name, bool? value)
|
|
|
|
{
|
|
|
|
if (value.HasValue)
|
|
|
|
{
|
|
|
|
TryBind(statement, name, value.Value);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TryBindNull(statement, name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-21 10:35:00 -07:00
|
|
|
public static IEnumerable<IReadOnlyList<ResultSetValue>> ExecuteQuery(this IStatement statement)
|
2016-11-19 22:59:36 -07:00
|
|
|
{
|
2020-04-15 05:29:12 -07:00
|
|
|
while (statement.MoveNext())
|
2016-11-19 22:59:36 -07:00
|
|
|
{
|
2020-04-15 05:29:12 -07:00
|
|
|
yield return statement.Current;
|
2016-11-19 22:59:36 -07:00
|
|
|
}
|
2016-11-19 19:43:21 -07:00
|
|
|
}
|
2016-11-18 01:39:20 -07:00
|
|
|
}
|
|
|
|
}
|