Is there any way to access the logic that SQLDataSource uses to convert a field value supplied in a DSRequest to the string which is inserted into the dynamically constructed INSERT or UPDATE statement?
For example, if a field is defined in the ds.xml as type="boolean" sqlStorageStrategy="singleCharYN" we'd like to be able to call a method to convert the boolean value in the request to a string "Y" or "N". Similar with other conversions such as type="date" sqlStorageStrategy="number" sqlDateFormat="yyyyMMdd".
For example, if a field is defined in the ds.xml as type="boolean" sqlStorageStrategy="singleCharYN" we'd like to be able to call a method to convert the boolean value in the request to a string "Y" or "N". Similar with other conversions such as type="date" sqlStorageStrategy="number" sqlDateFormat="yyyyMMdd".
Comment