You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.7 KiB
44 lines
1.7 KiB
|
|
using System;
|
|
using System.Data;
|
|
using Migrator.Framework;
|
|
|
|
namespace Migrator.Providers.SQLite
|
|
{
|
|
public class SQLiteDialect : Dialect
|
|
{
|
|
public SQLiteDialect()
|
|
{
|
|
RegisterColumnType(DbType.Binary, "BLOB");
|
|
RegisterColumnType(DbType.Byte, "INTEGER");
|
|
RegisterColumnType(DbType.Int16, "INTEGER");
|
|
RegisterColumnType(DbType.Int32, "INTEGER");
|
|
RegisterColumnType(DbType.Int64, "INTEGER");
|
|
RegisterColumnType(DbType.SByte, "INTEGER");
|
|
RegisterColumnType(DbType.UInt16, "INTEGER");
|
|
RegisterColumnType(DbType.UInt32, "INTEGER");
|
|
RegisterColumnType(DbType.UInt64, "INTEGER");
|
|
RegisterColumnType(DbType.Currency, "NUMERIC");
|
|
RegisterColumnType(DbType.Decimal, "NUMERIC");
|
|
RegisterColumnType(DbType.Double, "NUMERIC");
|
|
RegisterColumnType(DbType.Single, "NUMERIC");
|
|
RegisterColumnType(DbType.VarNumeric, "NUMERIC");
|
|
RegisterColumnType(DbType.String, "TEXT");
|
|
RegisterColumnType(DbType.AnsiStringFixedLength, "TEXT");
|
|
RegisterColumnType(DbType.StringFixedLength, "TEXT");
|
|
RegisterColumnType(DbType.DateTime, "DATETIME");
|
|
RegisterColumnType(DbType.Time, "DATETIME");
|
|
RegisterColumnType(DbType.Boolean, "INTEGER");
|
|
RegisterColumnType(DbType.Guid, "UNIQUEIDENTIFIER");
|
|
|
|
RegisterProperty(ColumnProperty.Identity, "AUTOINCREMENT");
|
|
}
|
|
|
|
public override Type TransformationProvider { get { return typeof(SQLiteTransformationProvider); } }
|
|
|
|
public override bool NeedsNotNullForIdentity
|
|
{
|
|
get { return false; }
|
|
}
|
|
}
|
|
} |