File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed
helidon/src/main/java/com/oracle/helidon/datasource
src/main/java/com/oracle/dev/jdbc/micronaut Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ public Response get() throws SQLException {
6464 + " FROM ALL_TABLES "
6565 + "ORDER BY TABLE_NAME ASC" );
6666 ResultSet rs = ps .executeQuery ()) {
67+ System .out .println ("Connection is : " + connection );
6768 while (rs .next ()) {
6869 sb .append (rs .getString (1 )).append ("\n " );
6970 }
Original file line number Diff line number Diff line change 33 xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
44 xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
55 <modelVersion >4.0.0</modelVersion >
6- <groupId >com.examplec </groupId >
6+ <groupId >com.example </groupId >
77 <artifactId >micronaut-graalvm</artifactId >
88 <version >0.1</version >
99 <packaging >${packaging} </packaging >
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ public void migrateDatabase() throws SQLException {
7373
7474 private boolean checkTableExists (Connection connection ) {
7575 try {
76+ System .out .println ("Connection is : " + connection );
7677 PreparedStatement stmt = connection .prepareStatement ("SELECT 'Hello World!' FROM dual" );
7778 ResultSet resultSet = stmt .executeQuery ();
7879 while (resultSet .next ()) {
You can’t perform that action at this time.
0 commit comments