VB 6 上的局域网编程
我需要在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不需要了解“网络编程”本身。您想要研究 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.
这不需要了解网络。例如,获取数据集或记录集非常容易,
现在问题是学习曲线并进行良好的设计可能需要很长时间。重点是获得经验,时间会告诉你正确的方法(尽管如果做得太糟糕就会通过账单)
That's not neccesary know about network. for example get an dataset or recordset it very easy
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)