Zablokowany wyjątek bazy danych SQLite

staje sięBaza danych jest zablokowana wyjątek odSQLite tylko dla niektórych zapytań.

Poniżej znajduje się mój kod: Kiedy wykonuję dowolną instrukcję select, działa poprawnie.
Kiedy wykonuję dowolne polecenie zapisu naJobs Tabela działa również dobrze.

Działa to dobrze:

ExecuteNonQuery("DELETE FROM Jobs WHERE id=1");

Ale w ten sam sposób, jeśli wykonuję zapytaniaEmployees tabela rzuca wyjątekbaza danych jest zablokowana.
To rzuca wyjątek:

ExecuteNonQuery("DELETE FROM Employees WHERE id=1");

Poniżej znajdują się moje funkcje:

public bool OpenConnection()
{
    if (Con == null)
    {
        Con = new SQLiteConnection(ConnectionString);
    }
    if (Con.State == ConnectionState.Closed)
    {
        Con.Open();
        //Cmd = new SQLiteCommand("PRAGMA FOREIGN_KEYS=ON", Con);
        //Cmd.ExecuteNonQuery();
        //Cmd.Dispose();
        //Cmd=null;
        return true;
    }
    if (IsConnectionBusy())
    {
        Msg.Log(new Exception("Connection busy"));
    }
    return false;
}

public Boolean CloseConnection()
{
    if (Con != null && Con.State == ConnectionState.Open)
    {
        if (Cmd != null) Cmd.Dispose();
        Cmd = null;
        Con.Close();
        return true;
    }

    return false;
}

public Boolean ExecuteNonQuery(string sql)
{
    if (sql == null) return false;
    try
    {
        if (!OpenConnection())
            return false;
        else
        {
            //Tx = Con.BeginTransaction(IsolationLevel.ReadCommitted);
            Cmd = new SQLiteCommand(sql, Con);
            Cmd.ExecuteNonQuery();
            //Tx.Commit();
            return true;
        }
    }
    catch (Exception exception)
    {
        //Tx.Rollback();
        Msg.Log(exception);
        return false;
    }
    finally
    {
        CloseConnection();
    }
}

Oto wyjątek: W linii 103:Cmd.ExecuteNonQuery();

Wyjątek znaleziono: Typ: System.Data.SQLite.SQLiteException Komunikat: baza danych jest zablokowana baza danych jest zablokowana Źródło: System.Data.SQLite

Stacktrace: at System.Data.SQLite.SQLite3.Step (SQLiteStatement stmt) w System.Data.SQLite.SQLiteDataReader.NextResult () at System.Data.SQLite.SQLiteDataReader..ctor (SQLiteCommand cmd, CommandBehavior behave) at System.Data .SQLite.SQLiteCommand.ExecuteReader (zachowanie CommandBehavior) w System.Data.SQLite.SQLiteCommand.ExecuteNonQuery () w TimeSheet6.DbOp.ExecuteNonQuery (String sql) w d: Projekty C # Aplikacje Zakończone projekty Arkusz6 Arkusz6 DbOp. cs: linia 103

questionAnswers(4)

yourAnswerToTheQuestion