Create Database Tool

The Create Database Tool allows users to visually create databases for MySQL, PostgreSQL, SQL Server, and Sybase. The tool takes the information entered by the user and then generates the SQL Create Database command specific to the current database connection.

Options on the tool include setting the database name, the character set / encoding, and other database specific settings.

Listed below is an example SQL statement generated by the Create Database tool for SQL Server

CREATE DATABASE test_database
ON
( NAME = test_database_dat,
FILENAME = 'c:\program files\microsoft sql server\mssql\data\test_database.mdf',
SIZE = 4,
MAXSIZE = 10,
FILEGROWTH = 1 )

The following are links to information about the Create Database tool for the databases supported by RazorSQL:

MySQL Create Database
PostgreSQL Create Database
SQL Server Create Database
Sybase Create Database