Shahama Hilmy · Mar 21, 2019 go to post
 If (%session.NewSession = 1) {
    // this is a new session
 }
Set %session.Data("MyData") = 22 Write $Get(%session.Data("MyData")) // this should print 22 
Shahama Hilmy · Mar 21, 2019 go to post

String date = "12/03/2019";
SimpleDateFormat sdt = new SimpleDateFormat("dd-MM-YYYY");
Date result = sdt.parse(date);
System.out.println(result);

Shahama Hilmy · Mar 6, 2019 go to post
DECLARE @IncrementValue int
SET @IncrementValue = 1
UPDATE Table1 SET Column1 = Column1 + @IncrementValue