Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for resultSet (0.09 sec)

  1. src/main/java/org/codelibs/core/sql/ResultSetUtil.java

         * <p>
         * If {@link ResultSet#close()} throws an exception, an error message is logged. The exception is not rethrown.
         * </p>
         *
         * @param resultSet
         *            The result set
         */
        public static void close(final ResultSet resultSet) {
            if (resultSet == null) {
                return;
            }
            try {
                resultSet.close();
            } catch (final SQLException e) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/sql/PreparedStatementUtil.java

        /**
         * Executes the query.
         *
         * @param ps
         *            {@link PreparedStatement}. Must not be {@literal null}.
         * @return {@link ResultSet}
         * @throws SQLRuntimeException
         *             If a {@link SQLException} occurs.
         */
        public static ResultSet executeQuery(final PreparedStatement ps) throws SQLRuntimeException {
            assertArgumentNotNull("ps", ps);
    
            try {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/sql/StatementUtil.java

    import static org.codelibs.core.log.Logger.format;
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotEmpty;
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    
    import org.codelibs.core.exception.SQLRuntimeException;
    import org.codelibs.core.log.Logger;
    
    /**
     * Utility class for {@link Statement}.
     *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_fr.properties

    errors.not_found_on_file_system = Non trouvé. Cause : {0}
    errors.could_not_open_on_system = Impossible d'ouvrir {0}.<br>Veuillez vérifier si le fichier est associé à une application.
    errors.result_size_exceeded = Aucun autre résultat ne peut être affiché.
    errors.target_file_does_not_exist = Le fichier {0} n'existe pas.
    errors.failed_to_delete_file = Échec de la suppression du fichier {0}.
    errors.docid_not_found = ID de document non trouvé. Cause : {0}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/CacheStats.java

       * requestCount}, or {@code 0.0} when {@code requestCount == 0}. Note that {@code hitRate +
       * missRate =~ 1.0}. Cache misses include all requests which weren't cache hits, including
       * requests which resulted in either successful or failed loading attempts, and requests which
       * waited for other threads to finish loading. It is thus the case that {@code missCount >=
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_nl.properties

    labels.purgeJobLogDay=Vorige taaklogboeken verwijderen
    labels.purgeUserInfoDay=Vorige gebruikerslogboeken verwijderen
    labels.reading=Lezen
    labels.roleTypeIds=Rol-ID
    labels.scriptData=Script
    labels.scriptResult=Resultaat
    labels.scriptType=Uitvoeringstype
    labels.segmentation=Segmentatie
    labels.startTime=Starttijd
    labels.target=Doel
    labels.token=Token
    labels.synonymFile=Synoniembestand
    labels.stopwordsFile=Stopwoordenbestand
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 42.8K bytes
    - Viewed (1)
  7. src/main/resources/fess_label_fr.properties

    labels.purgeJobLogDay=Supprimer les anciens journaux de tâches
    labels.purgeUserInfoDay=Supprimer les anciens journaux utilisateur
    labels.reading=Lecture
    labels.roleTypeIds=ID de rôle
    labels.scriptData=Script
    labels.scriptResult=Résultat
    labels.scriptType=Méthode d'exécution
    labels.segmentation=Segmentation
    labels.startTime=Heure de début
    labels.target=Cible
    labels.token=Jeton
    labels.synonymFile=Fichier de synonymes
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
Back to top