]> git.mxchange.org Git - jcore.git/blobdiff - src/org/mxchange/jcore/database/result/Result.java
Sorted members
[jcore.git] / src / org / mxchange / jcore / database / result / Result.java
index 96056ccda0e1d51e63fdf581e24c7198306e969d..4c8217ba7ac1c12355f450fa368bbadd3c5ee787 100644 (file)
@@ -16,6 +16,7 @@
  */
 package org.mxchange.jcore.database.result;
 
+import java.sql.SQLWarning;
 import java.util.Iterator;
 import org.mxchange.jcore.FrameworkInterface;
 import org.mxchange.jcore.database.storage.Storeable;
@@ -35,6 +36,20 @@ public interface Result<T extends Storeable> extends FrameworkInterface, Iterato
         */
        public void add (final Storeable storeable);
 
+       /**
+        * Setter for warnings
+        *
+        * @param warnings SQLQarning from ResultSet instance
+        */
+       public void setWarnings (final SQLWarning warnings);
+
+       /**
+        * Getter for warnings
+        *
+        * @return SQLQarning from ResultSet instance
+        */
+       public SQLWarning getWarnings ();
+
        /**
         * Returns size of result
         *