Description
Currently, the users have to specify driver name for the database they are intending to connect with jdbc. This may not be absolutely required to some users who prefer to go with default driver for that database.
For ex: To do write operation with jdbc io, users have to write
jdbcio.Write(s, tableName, driverClassName, jdbcurl, username, password, jdbcio.ExpansionAddrWrite("localhost:9000"))
We want to have transforms like
jdbcio.WriteFromPostgres(s, tableName, jdbcurl, username, password, jdbcio.ExpansionAddrWrite("localhost:9000"))
We will keep the original API as it though to avoid any breakage and to support other databases unless we add specific APIs for them or for the user.
Attachments
Issue Links
- links to