Replies: 2 comments
-
Hi @Mimetis , |
Beta Was this translation helpful? Give feedback.
0 replies
-
DMS is using the public enum SqliteType
{
/// <summary>
/// A signed integer.
/// </summary>
Integer = SQLITE_INTEGER,
/// <summary>
/// A floating point value
/// </summary>
Real = SQLITE_FLOAT,
/// <summary>
/// A text string.
/// </summary>
Text = SQLITE_TEXT,
/// <summary>
/// A blob of data.
/// </summary>
Blob = SQLITE_BLOB
} You can read more here: https://learn.microsoft.com/en-us/dotnet/standard/data/sqlite/types. That's been said, you can still create the empty client database with a Date typed columns in SQLite (which by the way will be converted to text internally, see here : https://www.sqlite.org/datatype3.html), if you prefer |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I have found that all my
DateTime
Column Types from SQL Server are automatically converted to typetext
in SQLite database during sync. Do you have any idea why this is happening? In the previous version it is correctly converted todatetime
.I have updated the SQL Script File: https://github.com/Mimetis/LV1986
SQL Server
Sqlite Database created after first sync
Beta Was this translation helpful? Give feedback.
All reactions