SQLite与MySql、Oracle的使用区别(C#)

1.参数html SQLiteParameter p = new SQLiteParameter(":project_id", DbType.String); p.Value = project_id; MySqlParameter p = new MySqlParameter("?project_id", MySqlDbType.VarChar); p.Value = project_id;
相关文章
相关标签/搜索