| Register | FAQ | Calendar | Search | Today's Posts | Mark Forums Read |
|
#1
| |||
| |||
| Is there a way to get the query from the Statement object? I couldn't find the API on that purpose. Please help. Thanks. |
|
#2
| |||
| |||
| Steve wrote: > Is there a way to get the query from the Statement object? I couldn't > find the API on that purpose. > Generally if it's not in the API docs then there isn't. Presumably you mean Interface java.sql.Statement and the String passed to it's executeQuery method. Perhaps you could write your own class that implements Statement, encapsulates the Statement obtained by Connection.createStatement and which keeps track of the most recent query? Connection connection = DriverManager.getConnection( ... ); Statement statement = connection.createStatement(); MyStatement myStatement = new MyStatement(statement); String sql = "select count(*) from aristocrat"; ResultSet rs = myStatement.executeQuery(sql); ... String lastUsedQuery = myStatement.getLastQuery(); if (lastUsedQuery.equals(sql)) System.out.println("I'm astonished!"); This makes no sense to me, if it doesn't to you either, I suggest you explain a bit about the background :-) |
|
#3
| |||
| |||
| RedGrittyBrick wrote: > Steve wrote: >> Is there a way to get the query from the Statement object? I couldn't >> find the API on that purpose. >> > > Generally if it's not in the API docs then there isn't. > > Presumably you mean Interface java.sql.Statement and the String passed > to it's executeQuery method. > > Perhaps you could write your own class that implements Statement, > encapsulates the Statement obtained by Connection.createStatement and > which keeps track of the most recent query? > > Connection connection = DriverManager.getConnection( ... ); > Statement statement = connection.createStatement(); > MyStatement myStatement = new MyStatement(statement); > String sql = "select count(*) from aristocrat"; > ResultSet rs = myStatement.executeQuery(sql); > ... > String lastUsedQuery = myStatement.getLastQuery(); > if (lastUsedQuery.equals(sql)) > System.out.println("I'm astonished!"); > > This makes no sense to me, if it doesn't to you either, I suggest you > explain a bit about the background :-) It's kind of a strange question, because Statements (as opposed to PreparedStatements) live *very* close to the Strings that represent their queries. There is no "setSql()" method - you directly "execute{,Query,Update}( String sql )", then you're straight into results. So the String is right there with the Statement, right at the point where you invoke it. You just use that String again, if you need it. What is the scenario that necessitates retrieving the String at a separate place or time? -- Lew This post contains one request for information, and echoes RedGrittyBrick's request for essentially the same information. follow-up set to clj.databases |
![]() |
| Thread Tools | |
| Display Modes | |
In an effort to better serve ads to our visitors, cookies are used on objectmix.com. For more information, check out our Privacy Policy.