简体   繁体   中英

Programming language suggestion for Windows app to connect to Sybase database

I am writing a Windows application that will connect to a Sybase database through an ODBC connection.
It will dynamically create a SQL statement based off of selections by the user in the GUI. It needs to be fast (1M+ records sometimes) and have the ability to export to Excel, or some other reporting tool (graphs, etc) What would be the best programming language to write this in?
I am leaning towards C#, I have experience writing in C#, C++ and VB; however I only have intermediate experience, not an expert by any means. I'm open to learning new languages if they offer advantages over the ones I listed perviously.
Thanks for the help.

All of the .Net languages (C#, Managed C++ and VB) have access to the same runtime library. C# and VB are both simpler than Managed C++, and personally I prefer C# to VB (but that's a matter of taste).

You might also want to consider Java as it's also used extensively in enterprise applications that for database transactions. It can be used to create CSV files that you can use in Excel or some other analysis / visualization application.

You might also consider Powerbuilder. It has a special relationship with Sybase ("native drivers specifically built for Sybase.." see http://www.sybase.com/products/modelingdevelopment/powerbuilder ). The syntax is similar to VB, and should be easy to get used to. The newer versions have excellent report features, such as graphing, charting etc ...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM