what can I do to correct this error?
what can I do to correct this error?
arios
Posts: 3Questions: 2Answers: 0
when i run the webpage and try to insert the values to the DB this error appear what can I do to correct this error?
An exception of type 'System.Exception' occurred in DataTables.dll but was not handled in user code
Additional information: Uknown database type specified
This discussion has been closed.
Answers
Try adding
.TryCatch( false )
before the.Process()
call. That will let the VS debugger break where the code is actually breaking and hopefully give us some more information.What did you configure the database type as? It is case sensitive.
Allan
my data base is on a sql server I don't see were do I put the information of the database in the code so it can get the info from the table.
If you are using the provided .NET libraries (which it appears you are) you can set the database connection information for the demo in the Settings.settings config file. If you aren't using the demo you can provide the database connection information directly in the
Db
connection constructor. See this section of the manual for more information.Allan