{{theTime}}

Search This Blog

Total Pageviews

How to add shutdown hook control c in Java

// Attach shutdown handler to catch control-c
        Runtime.getRuntime().addShutdownHook(new Thread("control c shutdown--hook") {
            @Override
            public void run() {
                  //Save and close if any object state require persistence.
            }
        });

No comments:

Generate Insert Sql from Select Statement

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