alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

HSQLDB example source code file (TestSelfSchemaPersistD1.txt)

This example HSQLDB source code file (TestSelfSchemaPersistD1.txt) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - HSQLDB tags/keywords

dba, testschemad1, testschemad1, tsd1t1, tsd1t1, tsd1t2, tsd1t2, varchar, varchar

The HSQLDB TestSelfSchemaPersistD1.txt source code

-- bug 1479110
-- logging and readback of nested creates in schema
-- part 1 of 2 scripts
create schema TESTSCHEMAD1 authorization DBA
  create table TSD1T1(C VARCHAR(10))
  create table TSD1T2(C VARCHAR(10));
set schema TESTSCHEMAD1;
insert into TSD1T2 values('test');
insert into TSD1T1 values('test');
select * from TESTSCHEMAD1.TSD1T2;
select * from TESTSCHEMAD1.TSD1T1;
shutdown immediately;

Other HSQLDB examples (source code examples)

Here is a short list of links related to this HSQLDB TestSelfSchemaPersistD1.txt source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 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.