I'm seeing Exceptions being throw during calls to getNextOIDAvalue() in CMySqlDatabase.vb. Is the follow correct?
Dim x As New OIDException
...
...
try
...
catch
...
Finally
Me.freeConnection(conn)
If Not x Is Nothing Then
Throw x
End If
Doesn't x get thrown on every call??
should the declaration be
Dim x As OIDException
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm seeing Exceptions being throw during calls to getNextOIDAvalue() in CMySqlDatabase.vb. Is the follow correct?
Dim x As New OIDException
...
...
try
...
catch
...
Finally
Me.freeConnection(conn)
If Not x Is Nothing Then
Throw x
End If
Doesn't x get thrown on every call??
should the declaration be
Dim x As OIDException
Oh Bugger!
That's what you get for a rush job :-(
I'll refresh the 0.1.9 release and update CVS...
Thanks,
Richard.
heh.. no worries. I'm sure you got 100 other things going on.