I use SchemaValidator to check the integrity of the database. I thought I could put the validation in a try-catch, but it throws an exception that is not handled by the try-catch. Why is it not caught, and how I can avoid this?
HibernateException occured - Missing table: TableName
is thrown on line validator.Validate()
Private Shared cfg As Configuration
Private Shared sessionFactory As ISessionFactory
Private Shared connectionString As String
Public Shared Sub ConfigureSessionFactory(ByVal connectionStr As String)
connectionString = connectionStr
sessionFactory = CreateSessionFactory()
End Sub
Private Shared Function CreateSessionFactory() As ISessionFactory
If sessionFactory Is Nothing Then
Return Fluently.Configure() _
.Database(MsSqlConfiguration.MsSql2008.ConnectionString(connectionString) _
.Cache(Function(c) c.UseQueryCache()) _
.ShowSql()) _
.Mappings(Function(m) m.FluentMappings.AddFromAssemblyOf(Of AccountMap)() _
.Conventions.Add(FluentNHibernate.Conventions.Helpers.DefaultLazy.Never())) _
.ExposeConfiguration(Function(c) InlineAssignHelper(cfg, c)) _
.BuildSessionFactory()
End If
Return sessionFactory
End Function
Public Shared Sub ValidateDatabase()
Dim validator As New SchemaValidator(cfg)
Try
validator.Validate()
Catch ex As HibernateException
Try
Dim update As New SchemaUpdate(cfg)
update.Execute(False, True)
System.Windows.Forms.MessageBox.Show("Invalid schema. HibernateException: " + ex.ToString())
Catch e As HibernateException
End Try
Catch ex As Exception
System.Windows.Forms.MessageBox.Show("Invalid schema: Exception: (Should not occur) " & ex.ToString)
End Try
End Sub
EDIT1:
Exception details: http://img833.imageshack.us/img833/2556/ss20110129213114.png
or.. "copy to clipboard":
NHibernate.HibernateException occurred Message=Missing table: AccountDeposit Source=NHibernate StackTrace: at NHibernate.Cfg.Configuration.ValidateSchema(Dialect dialect, DatabaseMetadata databaseMetadata) in d:\CSharp\NH\nhibernate\src\NHibernate\Cfg\Configuration.cs:line 2389 InnerException:
EDIT2: Ok, I just learned about the "Call Stack Window"..
http://img217.imageshack.us/img217/3121/ss20110129214825.png
So here is that: (Couldn't fix the format on the top, but that is a straight copy/paste)
NHibernate.dll!NHibernate.Cfg.Configuration.ValidateSchema(NHibernate.Dialect.Dialect dialect, NHibernate.Tool.hbm2ddl.DatabaseMetadata databaseMetadata) Line 2391 C#
NHibernate.dll!NHibernate.Tool.hbm2ddl.SchemaValidator.Validate() Line 110 + 0x22 bytes C#
RoboTrader.exe!RoboTrader.FNH_Manager.ValidateDatabase() Line 52 + 0xa bytes Basic RoboTrader.exe!RoboTrader.MainForm.MainForm_Load(Object sender, System.EventArgs e) Line 20 + 0x5 bytes Basic [Native to Managed Transition]
[Managed to Native Transition]
System.Windows.Forms.dll!System.Windows.Forms.Form.OnLoad(System.EventArgs e) + 0x1d5 bytes System.Windows.Forms.dll!System.Windows.Forms.Form.OnCreateControl() + 0x55 bytes
System.Windows.Forms.dll!System.Windows.Forms.Control.CreateControl(bool fIgnoreVisible) + 0x181 bytes
System.Windows.Forms.dll!System.Windows.Forms.Control.CreateControl() + 0x24 bytes
System.Windows.Forms.dll!System.Windows.Forms.Control.WmShowWindow(ref System.Windows.Forms.Message m) + 0x98 bytes System.Windows.Forms.dll!System.Windows.Forms.Control.WndProc(ref System.Windows.Forms.Message m) + 0x2b6 bytes System.Windows.Forms.dll!System.Windows.Forms.ScrollableControl.WndProc(ref System.Windows.Forms.Message m) + 0x2a bytes
System.Windows.Forms.dll!System.Windows.Forms.ContainerControl.WndProc(ref System.Windows.Forms.Message m) + 0x10 bytes System.Windows.Forms.dll!System.Windows.Forms.Form.WmShowWindow(ref System.Windows.Forms.Message m) + 0x41 bytes
System.Windows.Forms.dll!System.Windows.Forms.Form.WndProc(ref System.Windows.Forms.Message m) + 0x154 bytes
System.Windows.Forms.dll!System.Windows.Forms.Control.ControlNativeWindow.OnMessage(ref System.Windows.Forms.Message m) + 0x10 bytes
System.Windows.Forms.dll!System.Windows.Forms.Control.ControlNativeWindow.WndProc(ref System.Windows.Forms.Message m) + 0x31 bytes
System.Windows.Forms.dll!System.Windows.Forms.NativeWindow.DebuggableCallback(System.IntPtr hWnd, int msg, System.IntPtr wparam, System.IntPtr lparam) + 0x57 bytes [Native to Managed Transition]
[Managed to Native Transition]
System.Windows.Forms.dll!System.Windows.Forms.Control.SetVisibleCore(bool value) + 0x333 bytes
System.Windows.Forms.dll!System.Windows.Forms.Form.SetVisibleCore(bool value) + 0x87 bytes
System.Windows.Forms.dll!System.Windows.Forms.Control.Visible.set(bool value) + 0x11 bytes
System.Windows.Forms.dll!System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(int reason, System.Windows.Forms.ApplicationContext context) + 0xe8 bytes
System.Windows.Forms.dll!System.Windows.Forms.Application.ThreadContext.RunMessageLoop(int reason, System.Windows.Forms.ApplicationContext context) + 0x61 bytes
System.Windows.Forms.dll!System.Windows.Forms.Application.Run(System.Windows.Forms.ApplicationContext context) + 0x18 bytes Microsoft.VisualBasic.dll!Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun() + 0x81 bytes
Microsoft.VisualBasic.dll!Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.DoApplicationModel() + 0xef bytes
Microsoft.VisualBasic.dll!Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run(string[] commandLine) + 0x68 bytes
[Native to Managed Transition]
[Managed to Native Transition]
mscorlib.dll!System.AppDomain.ExecuteAssembly(string assemblyFile, System.Security.Policy.Evidence assemblySecurity, string[] args) + 0x3a bytes
Microsoft.VisualStudio.HostingProcess.Utilities.dll!Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() + 0x2b bytes
mscorlib.dll!System.Threading.ThreadHelper.ThreadStart_Context(object state) + 0x66 bytes
mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state) + 0x6f bytes
mscorlib.dll!System.Threading.ThreadHelper.ThreadStart() + 0x44 bytes
EDIT3:
I just discovered that if I "step into" through the code with F11, I get a different exception. As seen here: (was not)
http://img262.imageshack.us/img262/3439/ss20110129215746.png
My Form_Load calls these two static methods on startup, as shown below. Maybe this is a bad practice, or I'm missing something essential here.. ?
Private Sub MainForm_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
FNH_Manager.ConfigureSessionFactory(My.Settings.RoboFullDb)
FNH_Manager.ValidateDatabase()