2020-06-13 16:31:20 +00:00
|
|
|
using System.Data;
|
|
|
|
using System.Data.Common;
|
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
namespace PluralKit.Core;
|
|
|
|
|
|
|
|
public interface IPKCommand: IDbCommand, IAsyncDisposable
|
2020-06-13 16:31:20 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
public Task PrepareAsync(CancellationToken ct = default);
|
|
|
|
public Task<int> ExecuteNonQueryAsync(CancellationToken ct = default);
|
|
|
|
public Task<object?> ExecuteScalarAsync(CancellationToken ct = default);
|
|
|
|
public Task<DbDataReader> ExecuteReaderAsync(CancellationToken ct = default);
|
|
|
|
public Task<DbDataReader> ExecuteReaderAsync(CommandBehavior behavior, CancellationToken ct = default);
|
2020-06-13 16:31:20 +00:00
|
|
|
}
|