Create database by code
Posted: 07.06.2010, 18:31
Is there a way to create a new database from Delphi code with a Zeos component (component.createdatabase or "create database db') ?
Thanks
Thanks
This is the official forum of ZeosLib providing support to all ZeosLib users.
https://zeoslib.sourceforge.io/
Code: Select all
ZQuery1.SQL.Add('CREATE DATABASE insert-database-name-here');
ZQuery1.ExecSQL;