You are not logged in.
Pages: 1
Hi,
I'm using TSQLRestServerDb with Postgresql
fServer := TSQLRestServerDB.Create(fModel);
fServer.CreateMissingTables(0,INITIALIZETABLE_NOINDEX);
Is there a way to know, what tables were actually created on remote DB with CreateMissingTables ?
Even If I use INITIALIZETABLE_NOINDEX, table on remote DB is always created with Primary ID index. Is this expected behavior?
Offline
if you add logging to your project:
TSynLog.Family.Level := LOG_VERBOSE;
The logs will show the SQL created by CreateMissingTables.
Offline
Pages: 1