本文介绍了Winform在Internet上连接数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我购买了主机和域名,如何将桌面应用程序连接到我上传到主机的数据库?
I bought a hosting and domain, how to connect my desktop application to the database i uploaded to my hosting?
string connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source= http://www.sampledomain.com/database.mdb ;Jet OLEDB:Database Password=password";
System.Data.OleDb.OleDbConnection conn = new System.Data.OleDb.OleDbConnection(connectionString);
System.Data.OleDb.OleDbCommand cmd = conn.CreateCommand();
错误显示它不是有效的文件名.请帮助,提前感谢=)
Error show it''s not a valid file name. please help,thanks in advance =)
推荐答案
这篇关于Winform在Internet上连接数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!