1 write to _rawStatement
Microsoft.CodeAnalysis.Workspaces (1)
Storage\SQLite\v2\Interop\SqlStatement.cs (1)
38
_rawStatement
= statement;
11 references to _rawStatement
Microsoft.CodeAnalysis.Workspaces (11)
Storage\SQLite\v2\Interop\SqlStatement.cs (11)
42
=>
_rawStatement
.Dispose();
45
=> _connection.ThrowIfNotOk(NativeMethods.sqlite3_clear_bindings(
_rawStatement
));
48
=> _connection.ThrowIfNotOk(NativeMethods.sqlite3_reset(
_rawStatement
));
52
var stepResult = NativeMethods.sqlite3_step(
_rawStatement
);
104
_connection.ThrowIfNotOk(NativeMethods.sqlite3_bind_text(
_rawStatement
, parameterIndex, bytes));
109
_connection.ThrowIfNotOk(NativeMethods.sqlite3_bind_text(
_rawStatement
, parameterIndex, value));
113
=> _connection.ThrowIfNotOk(NativeMethods.sqlite3_bind_int64(
_rawStatement
, parameterIndex, value));
116
=> _connection.ThrowIfNotOk(NativeMethods.sqlite3_bind_blob(
_rawStatement
, parameterIndex, bytes));
119
=> NativeMethods.sqlite3_column_int(
_rawStatement
, columnIndex);
122
=> NativeMethods.sqlite3_column_int64(
_rawStatement
, columnIndex);
125
=> NativeMethods.sqlite3_column_text(
_rawStatement
, columnIndex);