我有一个应用程序,它将一些数据存储在firebird数据库中。我正在使用嵌入式firebird服务器和EntityFramework,并且所有工作都非常好但是当我通过表单上的x按钮关闭我的应用程序时,我得到一个Windows系统消息“应用程序已停止工作”,我无法捕获此异常。我的应用程序中有一个UnhandledExceptionHandler:
// Add handler for UI thread exceptions
Application.ThreadException += new ThreadExceptionEventHandler(UIThreadException);
// Force all WinForms errors to go through handler
Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
//This handler is for catching non-UI thread exceptions
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
.....some other code..........
Application.Run(new MainForm());
但这种异常从来没有被它捕获过。所以我去了windows事件日志,发现了这个错误事件的xml-view:
- <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
- <System>
<Provider Name="Application Error" />
<EventID Qualifiers="0">1000</EventID>
<Level>2</Level>
<Task>100</Task>
<Keywords>0x80000000000000</Keywords>
<TimeCreated SystemTime="2017-03-14T23:06:25.000000000Z" />
<EventRecordID>36077</EventRecordID>
<Channel>Application</Channel>
<Computer>MYPC</Computer>
<Security />
</System>
- <EventData>
<Data>MyApp.exe</Data>
<Data>1.0.0.0</Data>
<Data>58c7a3f0</Data>
<Data>fbintl.DLL</Data>
<Data>2.5.5.26952</Data>
<Data>5644432f</Data>
<Data>c0000005</Data>
<Data>00004e9c</Data>
<Data>1d64</Data>
<Data>01d29d1797fb7f0d</Data>
<Data>G:\Programming\WorkSpace\C#\MyApp\bin\x86\Debug\MyApp.exe</Data>
<Data>G:\Programming\WorkSpace\C#\MyApp\bin\x86\Debug\FireBirdEmbeddedServer\intl\fbintl.DLL</Data>
<Data>d84a6ca6-090a-11e7-8151-005056c00008</Data>
</EventData>
</Event>
当app已经关闭时,你看到fbintl.DLL出了问题。那我怎么能得到关于这个问题的更详细的描述呢?
UPD 我使应用程序更短,以检测我的问题的原因 - 现在只有这个EF代码在应用程序关闭之前运行
public async Task GetAutoAnswerTemplate()
{
try
{
using (var db = new FirebirdDbContext(embeddedConnectionString)){
//Async or sync methods doesn't affect to my problem
AutoAnswerTemplate template = await dbContext.AutoAnswerTemplate.FirstOrDefaultAsync();
return template?.AutoAnswer_body;
}
}
catch (Exception ex)
{
throw new EmbeddedFbDataBaseTools.EmbeddedDbException(
"Error while getting auto answer template" + "\r\n" + ex.Message, ex);
}
}
FirebirdDbContext的位置:
public class FirebirdDbContext : DbContext
{
public FirebirdDbContext(string connString)
: base(new FbConnection(connString), true)
{
//* The Entity initializer is bugged with Firebird embedded: http://stackoverflow.com/q/20959450/2504010 so I didn't use default--->
// Database.SetInitializer<FirebirdDBContext>(new CreateDatabaseIfNotExists<FirebirdDBContext>());
Database.SetInitializer<FirebirdDbContext>(new MyCreateDatabaseIfNotExists());
}
public DbSet<AutoAnswerTemplate> AutoAnswerTemplate { get; set; }
public DbSet<User> User { get; set; }
}
class MyCreateDatabaseIfNotExists : IDatabaseInitializer<FirebirdDbContext>
{
public void InitializeDatabase(FirebirdDbContext context)
{
if (!context.Database.Exists())
{
context.Database.Create();
}
}
}
连接参数是
public static string GetEmbeddeddefaultConnectionString()
{
FbConnectionStringBuilder builder = new FbConnectionStringBuilder
{
ServerType = FbServerType.Embedded,
DataSource = "localhost",
Port = 3050,
Database = EmbeddedDbPath, //Path to embedded db
ClientLibrary = EmbeddedServerDllPath,
UserID = "SYSDBA",
Password = "masterkey",
Charset = "WIN1251",
Dialect = 3,
ConnectionLifeTime = 15,
Pooling = true,
MinPoolSize = 0,
MaxPoolSize = 50
};
return builder.ToString();
}
新更新25.04.2017
我用firebird嵌入式数据库制作了一个简单的应用程序来演示错误。你可以找到它here
该应用程序创建一个firebird嵌入式数据库并在后台线程(任务TPL)中连接它,并在完成工作后(_bgTask.Status == TaskStatus.RanToCompletion)你关闭应用程序并得到错误。
答案 0 :(得分:4)
在连接字符串中,您指定了一个字符集并启用了连接池:
FbConnectionStringBuilder builder = new FbConnectionStringBuilder
{
…
Charset = "WIN1251",
…
Pooling = true,
…
};
这两个设置的组合似乎会触发错误;不是在你自己的代码中,而是在FirebirdSQL中。到目前为止,我找到了三种方法来解决这个问题。您可以执行以下任一操作:
在应用程序终止之前调用静态FbConnection.ClearAllPools()
方法(并启用连接池):
private static void AppExit(object sender, EventArgs e)
{
…
FbConnection.ClearAllPools();
}
通过设置Pooling = false
来停用连接池。
由于错误是在fbintl.dll
中触发的,这似乎是在处理字符集/国际化,因此您只需省略Charset
连接字符串参数(虽然我不知道会有什么后果。
最后两个建议是解决方法。我可能会选择#1,因为它似乎是最干净的,允许你保持连接池(这通常是一件好事),并指定你需要的字符集。
另请注意,如果在附加调试器的情况下运行应用程序,则可能只会看到异常。在制作中,异常可能会保持沉默并完全不被注意。
答案 1 :(得分:1)
除了2种情况,堆栈溢出异常和内存异常外,您的异常处理工作正常。在这种情况下,行为应该是您描述的行为(系统消息&#34;应用程序已停止工作&#34;) 关于堆栈溢出异常,当您在启用延迟加载的情况下序列化实体(json,xml,...)时,会经常发生EF。您是在退出时序列化实体吗?
如果不是这种情况,您可以检查其他两件事:
答案 2 :(得分:1)
调试代码有点棘手_prepareAppTask = new TaskFactory().StartNew
会不时导致竞争条件,这反过来会导致我在原帖中描述的异常。
当我尝试在主线程中运行DB代码导致意外行为并使我解决了问题时,你在幕后抛出并捕获和异常并不明显。
除此之外,我不会在您的代码中发现任何可能导致相关错误的关键问题。似乎firebird本身或EF提供程序导致应用程序关闭时出现问题。它与同步或异步代码无关 - 不是那样的。我只需运行控制台应用程序即可重现它。
只有在创建了数据库连接并且代码访问了数据库时,应用程序才会在退出时使用错误模块名称:fbintl.DLL 崩溃。 Faulting module what does this mean and why does this happen?的答案让我认为问题出在firebase或EF提供商身上。
您是否尝试过其他方式连接到firebase?
如果你只需要摆脱那个令人讨厌的例外,那么这个黑客对我有用:
private static void AppExit(object sender, EventArgs e)
{
...
// To ensure pending DB operations are processed. Not sure that's needed.
int timeout = 1000;
Thread.Sleep(timeout);
Process.GetCurrentProcess().Kill();
}
在退出之前立即终止进程可以防止错误显示。