当前位置:网站首页>Operate access database based on WinForm of C (at the end of MDB)
Operate access database based on WinForm of C (at the end of MDB)
2022-07-27 06:08:00 【The moonlight is shining】
Access Database operation
To configure App.config file
Here is no user password , Public database connection string ;Data Source= database .mdb It needs to be modified according to the specific database location
<appSettings>
<add key="access.DB" value="Provider=Microsoft.Jet.OLEDB.4.0;Data Source= database .mdb;Persist Security Info=False"/>
</appSettings>
The connection string with user name and password is written as follows :
string connstr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source= route +// Database name .mdb;Jet OLEDB:Database Password= password ;User Id= user name ";
stay SQLHelper Get the corresponding connection string
Assembly import required :using System.Configuration;
public static string connStr = ConfigurationManager.AppSettings["access.DB"];
See the links below for specific operations
边栏推荐
猜你喜欢

What has been updated in the Chinese version of XMIND mind map 2022 v12.0.3?

AE 3D粒子系统插件:Trapcode Particular

Super remote connection management tool: Royal TSX

制作视频后期特效需要什么工具?

Live Home 3D Pro interior home design tool

所有常用排序的代码实现和介绍

ps 2022 六月更新,都新增了哪些功能

剪枝-量化-转onnx中文系列教程

Li Kou 236. the nearest common ancestor of binary tree
Acwing the number of square arrays of one question per day
随机推荐
Man moon myth reading notes
PZK学C语言之初识指针
QGIS系列(1)-QGIS(server-apache) win10安装
Callback uses lambda
[song] rebirth of me in py introductory training (9): exception handling
编程学习记录——第5课【分支和循环语句】
[song] rebirth of me in py introductory training (10): numpy
编程学习记录——第6课【函数】
这是我的博客
[first song] deep learning of rebirth -keras (elementary)
[song] rebirth of me in py introductory training (7): function call
Dpdk network protocol stack VPP OVS DDoS Sdn nfv virtualization high performance expert Road
Weidongshan digital photo frame project learning (IV) simple TXT document display (e-paper book)
关于druid连接不上数据库的问题
WebODM win10安装教程(亲测)
arcgis style样式表文件转换成geoserver sld文件
Live Home 3D Pro室内家居设计工具
Greedy high performance neural network and AI chip application research and training
std::bind与std::function的一些应用
C语言-文件操作