Choose your database:
AnySQL
MySQL
MS SQL Server
PostgreSQL
SQLite
Firebird
Oracle
SQL Anywhere
DB2
MaxDB

Subscribe to our news:
Partners
Testimonials
Jacob Lyohne, Director of Development: "Regarding implementation, it is pretty self-explanatory and the SQLite Maestro manual is helpful for review and reference. We also found the on-line documentation useful and the software support staff readily available to answer our questions. Reports are very easy and quick to run and can be broken down into any number of statistical combinations".
Ron D.: "I'm still very happy with SQLite Maestro and Data Wizard; makes my HTPC database much easier to manage".

More

Add your opinion

SQLite Maestro online Help

Prev Return to chapter overview Next

Fields

Table columns are created and edited within the Field Editor.

 

 

 

 

 

To specify the Data Type, select it from the drop-down list.

 

Note: the name of the object must be unique among all the object names in the table. You can use any identifier that is allowed by SQLite  server.

 

Parameters

Use the Size edit box to define the length of the field value for integer, float, char and other data types and use Precision to define the precision of the field value, e.g. for float data type.

 

Field flags

 Not Null

Forbids the NULL values for the field.

 

 Primary Key

With this option checked the field becomes the only field with a primary key. If you check this field, you will not be able to set this attribute for any other field in the table. Hence if you want to create a compound primary key, do not check this field but create a primary key through the Indexes tab of Table Editor or the appropriate step of Create Table Wizard.

 

Autoincrement

If this option is checked then whenever you insert a NULL into this column of the table, the NULL is automatically converted into an integer which is one greater than the largest value of this column over all other rows in the table, or 1 if the table is empty. Autoincrement is not allowed on WITHOUT ROWID tables or on any table column other than INTEGER PRIMARY KEY. To learn more about the implementation of autoincrement columns in SQLite, see the SQLite documentation.

 

Collate

Establishes the default sorting behavior for the column.

 

Unique constraints are added on the Indexes tab.

 

Default value

Within the box you can assign a default value for the field column. The action is optional. If the default value was specified during the new row created and no values is specified for some of the columns, the columns will be filled with their respective default values.

 



Prev Return to chapter overview Next