Class Db.Prepared

  • Enclosing class:
    Db

    public static class Db.Prepared
    extends java.lang.Object
    This class represents a prepared statement.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void execute()
      Execute the prepared statement.
      java.util.List<java.util.Map<java.lang.String,​java.lang.Object>> query()
      Execute the prepared query.
      Db.Prepared set​(byte[] x)
      Set the value of the current parameter.
      Db.Prepared set​(int x)
      Set the value of the current parameter.
      Db.Prepared set​(java.io.InputStream x)
      Set the value of the current parameter.
      Db.Prepared set​(java.lang.String x)
      Set the value of the current parameter.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • set

        public Db.Prepared set​(int x)
        Set the value of the current parameter.
        Parameters:
        x - the value
        Returns:
        itself
      • set

        public Db.Prepared set​(java.lang.String x)
        Set the value of the current parameter.
        Parameters:
        x - the value
        Returns:
        itself
      • set

        public Db.Prepared set​(byte[] x)
        Set the value of the current parameter.
        Parameters:
        x - the value
        Returns:
        itself
      • set

        public Db.Prepared set​(java.io.InputStream x)
        Set the value of the current parameter.
        Parameters:
        x - the value
        Returns:
        itself
      • execute

        public void execute()
        Execute the prepared statement.
      • query

        public java.util.List<java.util.Map<java.lang.String,​java.lang.Object>> query()
        Execute the prepared query.
        Returns:
        the result list