How to provide support to DB2 when we DBType.Custom? Do we need to provide any implementation?
If you are using connector just for data loading , you can use DBType.MySQL nearly for any DB type, as it uses the common SQL only, without any DB specific commands.
If you are using data adding (insert operations ) - you will need to create a custom class
a) create DB2DataWrapper ( check MySQLDBDataWrapper.java )
b) create CustomGridFactory class, as child class of GridFactory, where override createDataWrapper to return the instance of DB2DataWrapper
Now when creating new connector, you can use DBType.Custom and CustomGridFactory instance as parameters of constructor
Thank you Stanislav