首页 > 解决方案 > 当我连接数据库时发生异常-System.AccessViolationException

问题描述

当连接打开时,会发生此异常

代码是:--

 SQLiteCommand cmd = new SQLiteCommand();
cmd.Connection = connection;
                connection.Open();
                Helper helper = new Helper(cmd);
helper.BeginTransaction();

标签: c#.netsqlitesqlite-net

解决方案


推荐阅读