Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IDbCommand.cs
Go to the documentation of this file.
2
3namespace System.Data;
4
5public interface IDbCommand : IDisposable
6{
7 IDbConnection? Connection { get; set; }
8
10
12 {
13 get; [param: AllowNull]
14 set;
15 }
16
17 int CommandTimeout { get; set; }
18
20
22
24
25 void Prepare();
26
27 void Cancel();
28
30
32
34
36
37 object? ExecuteScalar();
38}
IDbDataParameter CreateParameter()
IDataParameterCollection Parameters
Definition IDbCommand.cs:21
IDataReader ExecuteReader()
IDataReader ExecuteReader(CommandBehavior behavior)
IDbTransaction? Transaction
Definition IDbCommand.cs:9
IDbConnection? Connection
Definition IDbCommand.cs:7
UpdateRowSource UpdatedRowSource
Definition IDbCommand.cs:23