Subject Inserting a Date Value from Firebird
Author berniebialt
Does anyone have an example of how to insert/update a date in
Firebird?

My Code is as follows:

FBConn = New FbConnection(dbstr)

SQLString = "Insert into ""MstFile"" (""DOB"")_
Values (#" & cmbDOB.Value & "#)"

FBCmd = New FbCommand(SqlString, FBConn)
FBCmd.Connection.Open()
FBCmd.ExecuteNonQuery()
FBConn.Close()

I am receiving an error on the FBCmd Statement

Thanks for the help.....