Class SPIActions

java.lang.Object
org.postgresql.pljava.example.annotation.SPIActions

@SQLAction(provides="employees tables",install={"CREATE TABLE javatest.employees1 ( id int PRIMARY KEY, name varchar(200), salary int )","CREATE TABLE javatest.employees2 ( id\t\tint PRIMARY KEY, name\tvarchar(200), salary\tint, transferDay date, transferTime time )"},remove={"DROP TABLE javatest.employees2","DROP TABLE javatest.employees1"}) @SQLAction(requires="issue228",install="SELECT javatest.issue228()") public class SPIActions extends Object
Some methods used for testing the SPI JDBC driver.
Author:
Thomas Hallgren