|
使用C#编写的代码可以实现向SQLite数据库中插入数据的功能。例如,下面的代码实现了在SQLite数据库中插入一条用户信息的操作:
using System.Data.SQLite;
namespace MySQLiteDatabase
{
public class SQLiteDatabase
{
// 定义SQLite连接对象
private SQLiteConnection connection;
public SQLiteDatabase()
{
// 初始化SQLite连接对象
connection = new SQLiteConnection("Data Source=MyDatabase.db;Version=3;");
connection.Open();
}
public void InsertUser(string name, int age)
{
// 构造SQL语句
string sql = "INSERT INTO User (Name, Age) VALUES (@name, @age)";
// 创建SQLite命令对象
SQLiteCommand command = new SQLiteCommand(sql, connection);
// 给参数赋值
command.Parameters.AddWithValue("@name", name);
command.Parameters.AddWithValue("@age", age);
// 执行插入操作
command.ExecuteNonQuery();
}
}
}
|
|