Mercurial > hg > monetdb-java
comparison src/main/java/org/monetdb/jdbc/MonetCallableStatement.java @ 554:9fa67487f38a onclient
Doc comment fixes
author | Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com> |
---|---|
date | Thu, 16 Sep 2021 10:30:14 +0200 (2021-09-16) |
parents | 3dfcd06fd8ba |
children | 6aa38e8c0f2d |
comparison
equal
deleted
inserted
replaced
553:50b15ee1cb5e | 554:9fa67487f38a |
---|---|
75 * MonetCallableStatement constructor which checks the arguments for validity. | 75 * MonetCallableStatement constructor which checks the arguments for validity. |
76 * A MonetCallableStatement is backed by a {@link MonetPreparedStatement}, | 76 * A MonetCallableStatement is backed by a {@link MonetPreparedStatement}, |
77 * which deals with most of the required stuff of this class. | 77 * which deals with most of the required stuff of this class. |
78 * | 78 * |
79 * @param connection the connection that created this Statement | 79 * @param connection the connection that created this Statement |
80 * @param resultSetType type of {@link ResultSet} to produce | 80 * @param resultSetType type of {@link java.sql.ResultSet} to produce |
81 * @param resultSetConcurrency concurrency of ResultSet to produce | 81 * @param resultSetConcurrency concurrency of ResultSet to produce |
82 * @param callQuery - an SQL CALL statement that may contain one or more '?' parameter placeholders. | 82 * @param callQuery - an SQL CALL statement that may contain one or more '?' parameter placeholders. |
83 * Typically this statement is specified using JDBC call escape syntax: | 83 * Typically this statement is specified using JDBC call escape syntax: |
84 * { call procedure_name [(?,?, ...)] } | 84 * { call procedure_name [(?,?, ...)] } |
85 * or | 85 * or |