What is the replacement for "performJdbcOperation"?
In the Database plugin, the com.intellij.database.dataSource.DataSource class used to have a "performJdbcOperation(...)" method. This method has been removed, but I haven't been able to find what I should use to replace it the functionality it provided. Could someone send me a link to the API change documentation, or let me know the replacement logic for this method?
Please sign in to leave a comment.
It was pushed down the hierarchy a bit:
com.intellij.database.dataSource.AbstractDataSource#performJdbcOperation
I did see this and that is the approach I took in my plugin, but I was wondering if there was a way to accomplish the same task without having to call something in the implementation.