Class Insert


public class Insert extends Sql
The class extends Sql ad aims to represnt and define an instance of sql statement "INSERTO INTO VALUES".
  • Field Details

    • _values

      protected Values _values
  • Constructor Details

    • Insert

      public Insert(String table)
      The class's constructor that sets the structure of the sql statement (as Fragment) "INSERT INTO table VALUES".
      For example the values, in the statement, are separated by a comma ecc.
      Parameters:
      table - The table in wich we want to insert datas.
  • Method Details

    • values

      public Values values()
      Gets the current values set into "INSERT INTO VALUES" statement.
      Returns:
      The current values.