I create a table in Sqlite, which contains a column with the maximum length:
create table [Log] (
Id int identity not null
constraint PK_Log_Id primary key,
Data nvarchar (max) null
) But
I create a table in Sqlite, which contains a column with the maximum length:
create table [Log] (
Id int identity not null
constraint PK_Log_Id primary key,
Data nvarchar (max) null
) But