Interface SequenceDsl

All Known Implementing Classes:
SqlDsl

public interface SequenceDsl
  • Method Summary

    Modifier and Type
    Method
    Description
    default StatementDsl
    insertInto(String tableName)
    An insertion operation on the SQL Database (DB)
    insertInto(String tableName, Long id)
    An insertion operation on the SQL Database (DB)
  • Method Details

    • insertInto

      StatementDsl insertInto(String tableName, Long id)
      An insertion operation on the SQL Database (DB)
      Parameters:
      tableName - the target table in the DB
      id - an id for this insertion. Can be null.
      Returns:
      a statement in which it can be specified the values to add
    • insertInto

      default StatementDsl insertInto(String tableName)
      An insertion operation on the SQL Database (DB)
      Parameters:
      tableName - the target table in the DB
      Returns:
      a statement in which it can be specified the values to add