Subject | Column "column_def" of getcolumns (...) returns redundant "default " |
---|---|
Author | vmdd_tech |
Post date | 2004-07-01T02:39:50Z |
create table dt (
DTIME timestamp default current_timestamp);
...
result = databasemeta.getColumns (...);
System.out.println (result.getString ("COLUMN_DEF"));
==>
default current_timestamp
Notice that the above output includes redundant "default ";
Thanks,
Binh
http://vmdd.tech.mylinuxisp.com/catalog/
DTIME timestamp default current_timestamp);
...
result = databasemeta.getColumns (...);
System.out.println (result.getString ("COLUMN_DEF"));
==>
default current_timestamp
Notice that the above output includes redundant "default ";
Thanks,
Binh
http://vmdd.tech.mylinuxisp.com/catalog/