VB.NET vs C++

R

Roy Gourgi

Hi,

How fast is VB.NET compared to C++. I have written a program in C++ but now
I realize that I have to store a lot of information into a database and then
be able to retrieve it. I heard that VB.NET is the future of database
programming, but I would like to know if I would be compromising a lot of
speed. For example Visual FoxPro is much much slower than C++ so I was
wandering if VB.NET also falls into the same category. VFP is an
interpretive language and that is why it is so slow.

Can anyone shed any light?

TIA
Roy
 
G

Guest

you cant compare c++ with vb.net, because you can "tunning" your C++ while
VB.net brigs librarys and things that make it more heavy, and slowly, so if
you want a ferrari application you must build it in C++... but its 20 time
more complex for developer, and requires much more time...
VB.net its much more easy, you have all the framework (namespaces, apis,
etc) for make your job more light...

and if you want more easyer, just search application data blocks at
microsoft.com are dlls for data manipulation...


salute!
 
S

smith

That's a loaded question.

I can write a very "slow" C++ solution, I can write a "fast" VB.Net solution
and vice versa.

Since you're mentioning database features instead of low level graphics I
think that you'll find that the performance bottlenecks that you should be
worring over mostly are in your data model, your rdbms engine's specific
features (Jet, SQLServer, Oracle, etc all have their own tricks and tweaks),
your connections the to db, and your SQL (whether dynamic or done with
Sprocs/Packages). Compared to the effect that the db has on a database
front-end app's performance, you'll likely not see a bothersome performance
difference between business or gui code written correctly and well in any
modern language.

IMHO

smith
www.smithvoice.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top