• 大小: 0.82M
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: SQLite  C#  sql  64位  c  

资源简介

c#调用sqlite自动切换32位和64位

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Data.SQLite;
namespace SqliteAuto
{
    public partial class Form1 : Form
    {
        private static  System.Text.UTF8Encoding utf8 = new System.Text.UTF8Encoding();
        private static string connectionString = utf8.GetString(utf8.GetBytes(“Data Source=“+System.Windows.Forms.Application.StartupPath + “\\data\\pm.dll“));
        public Form1()
        {
            InitializeComponent();
        }
        public static int GetMaxID(string FieldName string TableName)
        {
            string strsql = “select max(“ + FieldName + “)+1 from “ + TableName;
            object obj = GetSingl

评论

共有 条评论