|
HSQLDB example source code file (dsv-prepare.sql)
The HSQLDB dsv-prepare.sql source code/* * $Id: dsv-prepare.sql 311 2007-06-24 15:22:11Z unsaved $ * * Tests PL 'prepare' command */ CREATE TABLE t (i INT, a INT, b INT, c INT); * N = 4567 * prepare N INSERT INTO t(i, a, b, c) VALUES (1, ?, 8, 9); SELECT count(*) FROM t WHERE i = 1 AND a = 4567 AND b= 8 AND c = 9; *if (*? != 1) \q PL prepare command failed *end if Other HSQLDB examples (source code examples)Here is a short list of links related to this HSQLDB dsv-prepare.sql source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.