To see a world in a grain of sand.
And a heaven in a wild flower
Hold infinity in the palm of your hand.
And eternity in an hour
一花一世界
一沙一天堂
掌中握无限
霎那成永恒
星期五, 九月 16, 2005
如何在HSQL中判定一个Table是否已经建立.
--使用如下SQL,可以得到一个Schema里是否已经建立了一个table
select * from information_SCHEMA.SYSTEM_TABLES
where TABLE_SCHEM='PUBLIC' and table_name='USER'