|
Does TMJava run with database XYZ |
Assuming that you have a database driver for it then the main problem that can occur is with different SQL syntax. Try creating the following table:
CREATE TABLE TEST_DATA_TYPES (
FIELD1 INTEGER NOT NULL PRIMARY KEY,
FIELD2 DATETIME,
FIELD3 DOUBLE,
FIELD4 VARCHAR(25),
FEILD5 BLOB
)
This will test the different data types that are needed by TMJava. |