1 package net.sourceforge.backpedal.api.core;
2
3 import java.sql.Connection;
4 import java.sql.SQLException;
5
6 public interface BackpedalStatementEssentials {
7 public static final String INSERT = "INSERT";
8 public static final String DELETE = "DELETE";
9 public static final String UPDATE = "UPDATE";
10
11 /***
12 * Backpedal the statement I represent using the supplied connection.
13 */
14 public void backpedal(Connection connection) throws SQLException;
15 }
This page was automatically generated by Maven