I have a preparedStatement called PrepStatement
which contains a Select Query like
Select a, b from abc where ab="cd".
executed below
ResultSet selectParams = PrepStatement.executeQuery();
Is there anyway i can get the executed Query with parameters passed from ResultSet object?
I can get it from PrepStatement object, But i want to get it from ResultSet or ResultSetMetadata.