what can I do to correct this error?

what can I do to correct this error?

ariosarios 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

Answers

  • allanallan Posts: 63,356Questions: 1Answers: 10,444 Site admin

    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.

    Additional information: Uknown database type specified

    What did you configure the database type as? It is case sensitive.

    Allan

  • ariosarios Posts: 3Questions: 2Answers: 0

    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.

  • allanallan Posts: 63,356Questions: 1Answers: 10,444 Site admin

    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

This discussion has been closed.