{{theTime}}

Search This Blog

Total Pageviews

How to fix the intelliJ error- Cannot find symbol @javax.annotation.Generated

Add compile("javax.annotation:javax.annotation-api:1.3.2") to the gradle dependencies.

No comments:

Generate Insert Sql from Select Statement

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