Link to home
Start Free TrialLog in
Avatar of pauldonson
pauldonson

asked on

Access, VB, c# or C++ for a database application?

Hi,

I have written an application in Microsoft Access which works fine for what we want at the moment. The problem is we have a number of satellite offices which will need to access the database. I am therefore going to move the database onto SQL Server as step one, and carry on using Access as the front end until the database has settled in.

In order to roll it out to the other offices I have a number of questions:

1) If the Access database is installed at each office locally with a connection to the SQL server over the VPN can I expect a reasonable performance? I assume because all the forms, etc are local then only the data would be transferred over the VPN. Issues arise, I guess, when (for example) the user is browsing through a dataset using a single form with record navigators, would Access grab the whole dataset or just fetch each record as it was being viewed? I understand this might not be an ideal solution but from a business viewpoint Access is so fast to develop in it would be the ideal choice.

2) The other option I have come up with is to write a front-end application in VB/C++/C# which would connect to the SQL database and could be written in such a way that it wouldn't ask for large data sets in one go. VB would be the obvious choice for me as I have a lot of experience of VBA and the transition would be fairly painless. Although when I have worked with VB in the past it does seem a bit fiddly when it comes to handling databases (particularly when compared with Access).

So, in summary, am I better continuing with Access or using a devlopment tool. If so which would be the best VB, C++ or C#?

Thanks.

ASKER CERTIFIED SOLUTION
Avatar of AlexFM
AlexFM

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of pauldonson
pauldonson

ASKER

Thanks for that AlexFM.

For someone coming from a VBA background (I have used Delphi and some other proprietory languages in the past) - would you say C# was suitable or would I be better going for VB.net? Are they both OK for working with SQL?
They both OK for SQL. All .NET languages are working with the same resources - .NET Framework. The difference is only in syntax.
VB programmers usually decide to work with VB .NET. To my opiniin, C# is much better and looks like real programming language. On the other hand, there is a lot of DB programming samples in VB.NET. It is your decision what langusge to choose, you have the same tools in both ot them.

Having some experience in .NET programming, you will see that all .NET languages are the same and it is possible to work in any of them.

However, there are other choices like Java and possibly something else. Other EE experts may add their opinion about this.
OK thanks for your input.