2 instantiations of SqlException
Microsoft.CodeAnalysis.Workspaces (2)
Storage\SQLite\v2\Interop\SqlConnection.cs (2)
105throw new SqlException(result, $"Could not open database file: {databasePath} ({result})"); 448=> throw new SqlException(result,
7 references to SqlException
Microsoft.CodeAnalysis.Workspaces (7)
Storage\SQLite\v2\Interop\SqlConnection.cs (4)
211public SqlException? RunInTransaction<TState>(Action<TState> action, TState state, bool throwOnSqlException) 225/// <param name="throwOnSqlException">If a <see cref="SqlException"/> that happens during excution of <paramref 228public (TResult? result, SqlException? exception) RunInTransaction<TState, TResult>( 245catch (SqlException ex)
Storage\SQLite\v2\SQLitePersistentStorage.cs (2)
170private void DisableStorage(SqlException exception) 176public static KeyValueLogMessage GetLogMessage(SqlException exception)
Storage\SQLite\v2\SQLitePersistentStorage_FlushWrites.cs (1)
44var exception = connection.RunInTransaction(static state =>