VB 6 上的局域网编程

发布于 2024-11-30 14:23:59 字数 240 浏览 1 评论 0原文

我需要在 VB 6 中创建一个简单的 LAN 程序,该程序将在 ACCESS DATABASE 中插入数据。应更新此数据库,以便访问该数据库的每台 PC 都具有更新的数据库。

我了解 VB 6,但对网络编程一无所知,因此寻求帮助。

编辑:

我将使用 Access 数据库而不是 MS SQL Server,这是主要问题,提供一些工作代码将数据发送到局域网上的另一台 PC 将很有帮助

I need to create a simple LAN program in VB 6, the program will insert data in an ACCESS DATABASE. this database should be updated so each PC accessing the database have the updated database.

I know VB 6 but have no idea about network programming so looking for help.

Edit:

I'll use Access database not MS SQL Server, thats the main problem, and it will be helpful to give some working code to send data to another PC on the lan

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伤痕我心 2024-12-07 14:24:00

您不需要了解“网络编程”本身。您想要研究 ADO(又名 MDAC),最好是 2.8 版本。 ADO 库允许您从 VB6 连接到数据库,例如 Access。

You don't need to know "network programming" per se. You want to research ADO (a.k.a. MDAC), preferably version 2.8. The ADO library allows you to connect to databases such as Access, from VB6.

深陷 2024-12-07 14:24:00

这不需要了解网络。例如,获取数据集或记录集非常容易,

Dim rs As ADODB.Recordset
Dim nRowsAffected As Long
Dim con As ADODB.Connection

con.ConnectionString = "server=mynetworksqlserver,user='viewuser',pwd='14aE%9¡3',defaultdatabase='users'"
con.CursorLocation = adUseClient
Set rs = con.Execute("select * from clients", nRowsAffected)

现在问题是学习曲线并进行良好的设计可能需要很长时间。重点是获得经验,时间会告诉你正确的方法(尽管如果做得太糟糕就会通过账单)

That's not neccesary know about network. for example get an dataset or recordset it very easy

Dim rs As ADODB.Recordset
Dim nRowsAffected As Long
Dim con As ADODB.Connection

con.ConnectionString = "server=mynetworksqlserver,user='viewuser',pwd='14aE%9¡3',defaultdatabase='users'"
con.CursorLocation = adUseClient
Set rs = con.Execute("select * from clients", nRowsAffected)

now the matter is learning curve and have well Desing it can take an long time. The point is gain experiencie and the time show to you the correct way (although if do too an bad it pass bill)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文