{{theTime}}

Search This Blog

Total Pageviews

How to fix Unhandled Exception type SQLException


3 Quick Fixes.
Add throws declaration
Surround with try/multi-catch
Surround with try/catch

No comments:

Generate Insert Sql from Select Statement

SELECT 'INSERT INTO ReferenceTable (ID, Name) VALUES (' +        CAST(ID AS NVARCHAR) + ', ''' + Name + ''...