4526. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/5/2018 9:07:07 PM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

4526.1 Files compared

# Location File Last Modified
1 MHEDP3_VAOS_VATS_SM_Sept2018.zip\VATS 2.2.0\var-utility-web-2.2.0.zip\gradle-builds\buildSrc\src\main\groovy RunSQL.groovy Fri Jun 1 01:37:17 2018 UTC
2 MHEDP3_VAOS_VATS_SM_Sept2018.zip\VATS 2.2.0\var-utility-web-2.2.0.zip\gradle-builds\buildSrc\src\main\groovy RunSQL.groovy Sat Oct 6 00:52:48 2018 UTC

4526.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 36
Changed 1 4
Inserted 0 0
Removed 0 0

4526.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

4526.4 Active regular expressions

No regular expressions were active.

4526.5 Comparison detail

  1   import org .gradle.ap i.DefaultT ask
  2   import org .gradle.ap i.tasks.Ta skAction
  3   import gro ovy.sql.Sq l
  4  
  5   class RunS QL extends  DefaultTa sk {
  6       def Fi le sqlFile
  7         def user =  ' AI '
  8         def passwo rd = 'A I '
  9       def ur l = 'jdbc: mysql://lo calhost:33 06/HADB'
  10       def dr iver = 'co m.mysql.jd bc.Driver'
  11  
  12       @TaskA ction
  13       def ru nSQL() {
  14           de f props =  [user: use r, passwor d: passwor d, allowMu ltiQueries : 'true']  as Propert ies
  15           de f sql = Sq l.newInsta nce(url, p rops, driv er)
  16           St ring sqlSt ring = sql File.text
  17           sq l.execute( sqlString)
  18           sq l.close()
  19       }
  20   }