Is SqliteParameter.SqliteType relevant on insert?

16 views Asked by At

Using Microsoft.Data.Sqlite, when inserting a new row using Parameters, do I need to consider SqliteParameter.DbType and/or SqliteParameter.SqliteType?

Microsoft documentation states

Due to SQLite's dynamic type system, parameter values are not converted.

So this means that the types are irrelevant, because Microsoft.Data.Sqlite will not apply any kind of conversion to the values. Is this correct?

0

There are 0 answers