VB.NET周三基于应用程序的在线数据库

问题描述:

在我的项目中,我必须构建一个基于Web的应用程序.该应用程序必须在线运行.我们能够在数据库上执行所有数据操作操作.i不知道该怎么做.请帮帮我.

前端是VB.NET 2005
后端是MS Access 2003

谢谢你freinds

In my project i have to build a web based application.This application will have to work on on-line.we can able to do all data manipulation operation on the data base.i Don''t know how to do.please help me.

front end is VB.NET 2005
Back end is MS access 2003

Thank u freinds

好吧,您不会直接在Internet上使用Access数据库. Access是一个基于文件的数据库,如果您不邀请地球上的所有人破坏数据并将他们想要的所有内容上传到您的共享中,就无法将共享暴露给Internet.

您将为此使用Access的唯一方法是将Web服务前端写入数据库.然后,不必将数据库共享到Internet即可让远程客户端访问它.该Web服务将接受您客户的请求,并为他们完成所有数据库的工作.

我强烈建议您在尝试编写一行代码之前先阅读Web服务.

使用SQL Server会更容易...
Well, you''ve not going to use an Access database directly acrossed the Internet. Access is a file-based database and you cannot expose a share to the Internet without inviting everyone on this earth to destroy your data and upload everything they want to your share.

The ONLY way you''re going to use Access for this is to write a web service front-end to your database. The database then doesn''t have to be shared out to the Internet in order for remote clients to get at it. This web service will take requests from your clients and do all the database work for them.

I highly suggest reading up on web services before you even attempt to write a line of code for this.

It would have been easier to use SQL Server...