Menu

#12 case-sensibiliy on files (<table.DBF>) don't match tablename

open
nobody
None
5
2009-11-27
2009-11-27
No

hi!

great work - this is exactly what i need - a small DB driver for embedded java.

i just wanted to point out that the filenames don't match the table names with case-sensitive systems:

tinySQL>create table test (i INT);
DONE

tinySQL>select * from test;
Exception: Unable to open /home/klm/workspace/se-core/libs/./TEST.DBF - does not exist. or can't be read.
tinySQL>create table TEST (i INT);
DONE

tinySQL>select * from TEST;
tinySQL>select * from test;
tinySQL>

when i provide lower-case tablename, it's looking for an upper-case tablename
which can't be found on unix-filesystems.

Kris

Discussion


Log in to post a comment.