We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fb53fa commit ec2164aCopy full SHA for ec2164a
1 file changed
src/SharpCoreDB/DatabaseExtensions.cs
@@ -682,14 +682,14 @@ private void ExecuteCreateTableInternal(string sql)
682
columns.Add(colName);
683
columnTypes.Add(typeStr switch
684
{
685
- "INT" or "INTEGER" or "BIGINT" => DataType.Integer,
+ "INT" or "INTEGER" => DataType.Integer,
686
+ "BIGINT" or "LONG" => DataType.Long,
687
"TEXT" or "VARCHAR" or "CHAR" or "NVARCHAR" => DataType.String,
688
"REAL" or "FLOAT" or "DOUBLE" => DataType.Real,
689
"DECIMAL" or "NUMERIC" => DataType.Decimal,
690
"DATETIME" or "DATE" or "TIMESTAMP" => DataType.DateTime,
691
"BLOB" => DataType.Blob,
692
"BOOLEAN" or "BOOL" => DataType.Boolean,
- "LONG" => DataType.Long,
693
"GUID" or "UUID" => DataType.Guid,
694
_ => DataType.String
695
});
0 commit comments