Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个日志表,使用 System.Data.Sqlite(.NET 4.5 上的 C#)写入包含 12 列的单个表。有些列可能会写成一行,有些可能不会。有没有办法让一个参数化的 Insert 语句,只指定 n 个参数,让其余的自动设置为 null?
我正在考虑相当于 MS SQL Server 存储过程,其中多个输入参数可以指定为空,然后存储过程中的单个插入语句将根据需要插入空值。
谢谢。
使用null或DBNull.Value;请参阅 NULL 值和 SQLiteParameters。
null
DBNull.Value