You cannot change the JDBC type in the adapter service.
I’d suggest having the adapter service return the value as a string. Then you can use WmTransformations package (or something similar) to convert the string to a double to assign to the publishable doc type.
I would STRONGLY ENCOURAGE that the use of double be revisited. For money fields, double can result in inaccurate values. Here is an article on the problems with float and double: [URL]wmusers.com
Generally speaking, strong data typing “in the middle” is not useful. I recommend using string data types in IS doc types and publishable doc types for all fields. The one exception I sometimes make is for date fields where I use java.util.Date. But usually even for date fields I usually use/recommend a string representation and the W3C date/time format.
#webMethods#Integration-Server-and-ESB#Flow-and-Java-services