- prep for Col. Duke’s presentation
- deployed ProjectManager, looks good
- working on VSS
- changed variables_values from TEXT to BLOB
ALTER TABLE `table_queries` CHANGE `variables_values` `variables_values` BLOB NULL DEFAULT NULL
- changed variables_values to macros
ALTER TABLE `table_queries` CHANGE `variables_values` `macros` BLOB NULL DEFAULT NULL
- changed all references to variable/variables to macro/macros
- modified ScriptFacades to use BLOB – convert String to BLOB to store, BLOB to String to retrieve
- Using Matcher.quoteReplacement(variableValue) to avoid illegal group errors caused by reserved RegEx characters
- changed variables_values from TEXT to BLOB
