G
Guest
Have successfully created tables and indices using SQL such as following -
CREATE TABLE OBSERVATIONDATA
( obs_sequence COUNTER,
obs_time DATETIME NOT NULL,
obs_data TEXT(22) WITH COMPRESSION NOT NULL )
CREATE INDEX time ON observationdata(obs_time)
- these were fed in using JET 4 interface in Delphi (ain't legacy code great

Question is - what is SQL syntax for creating an empty database /ex nihilo/
without using the Access UI. I could use a pointer to BNF or other spec for
the language as used in Access.
CREATE DATABASE thedatabase ???
The goal is to eliminate the "empty template" database file from the
software distribution.
-- Mike
CREATE TABLE OBSERVATIONDATA
( obs_sequence COUNTER,
obs_time DATETIME NOT NULL,
obs_data TEXT(22) WITH COMPRESSION NOT NULL )
CREATE INDEX time ON observationdata(obs_time)
- these were fed in using JET 4 interface in Delphi (ain't legacy code great

Question is - what is SQL syntax for creating an empty database /ex nihilo/
without using the Access UI. I could use a pointer to BNF or other spec for
the language as used in Access.
CREATE DATABASE thedatabase ???
The goal is to eliminate the "empty template" database file from the
software distribution.
-- Mike