More work on the data system
- issue with reserved column names, dealt with it by appending underscores to the beginning and end of each column name mapping
- issue with longs strings, first tried clobs for any string > 250 in length but that involved casting back and forth so instead put in some logic to double the available length every time it doesn’t fit starting at 255, then 511, 1023 etc.
- Successfully saving strings, integers, doubles, and booleans. Now need to save references to other objects.
I had to share this line of code from a Hibernate java class:
private static class IncrediblySillyJpaMapsIdMappedIdentifierValueMarshaller implements MappedIdentifierValueMarshaller{
