Changeset: fcbb082bb9eb for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=fcbb082bb9eb
Modified Files:
        java/src/main/java/nl/cwi/monetdb/jdbc/MonetDatabaseMetaData.java
Branch: Jun2016
Log Message:

Correct the return value of supportsStoredProcedures().
Yes we do support stored procedures (via CREATE PROCEDURE ...)
In SQuirreL the stored procedures are now also shown in the Objects page
per schema under the PROCEDURE entry. Nice.


diffs (12 lines):

diff --git a/java/src/main/java/nl/cwi/monetdb/jdbc/MonetDatabaseMetaData.java 
b/java/src/main/java/nl/cwi/monetdb/jdbc/MonetDatabaseMetaData.java
--- a/java/src/main/java/nl/cwi/monetdb/jdbc/MonetDatabaseMetaData.java
+++ b/java/src/main/java/nl/cwi/monetdb/jdbc/MonetDatabaseMetaData.java
@@ -1190,7 +1190,7 @@ public class MonetDatabaseMetaData exten
         */
        @Override
        public boolean supportsStoredProcedures() {
-               return false;
+               return true;
        }
 
        /**
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to