473,396 Members | 1,784 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

plz i need some advice on c++

I'VE JUST STARTED PROGRAMMING, WHICH I HAVEN'T DONE SINCE THE OLD BASIC.
I'VE CHOSEN C++ AS THE PROGRAMMING LANGUAGE BUT I DON'T KNOW IF I'VE CHOSEN
THE RIGHT PATH .
MY AIM IS TO CREATE DATABASES FROM SCRATCH WITHOUT HAVING TO USE ACCESS.
WHAT I NEED IS INFORMATION ON C++, WHICH COMPILERS TO USE AND IF IT IS OK TO
START WITH C++ OR BETTER TO WITH A DIFFERENT LANGUAGE BEFORE PASSING TO C++.
CAN YOU ADVISE ME?
Nov 17 '05 #1
10 1182
snag wrote:
I'VE JUST STARTED PROGRAMMING, WHICH I HAVEN'T DONE SINCE THE OLD BASIC.
I'VE CHOSEN C++ AS THE PROGRAMMING LANGUAGE BUT I DON'T KNOW IF I'VE CHOSEN
THE RIGHT PATH .
MY AIM IS TO CREATE DATABASES FROM SCRATCH WITHOUT HAVING TO USE ACCESS.
WHAT I NEED IS INFORMATION ON C++, WHICH COMPILERS TO USE AND IF IT IS OK TO
START WITH C++ OR BETTER TO WITH A DIFFERENT LANGUAGE BEFORE PASSING TO C++.
CAN YOU ADVISE ME?


Do you have some problem with your "SHIFT"-Key?

For starting database programming, I would recommend C# and the
..NET-Framework, because the ADO.NET classes are easier that the C++
counterparts.

As development-environment I would either suggest the (currently free)
Visual C# Express 2005 Beta (or CTP)
http://lab.msdn.microsoft.com/expres...p/default.aspx

or Visual Studio 2003
http://msdn.microsoft.com/howtobuy/vstudio/

or, to use a free environment: Sharp-Develop:
http://www.icsharpcode.net/opensource/sd/
For C++ and database you can start with
http://msdn.microsoft.com/library/en-us/
ado270/htm/mdmscusingadowithmicrosoftvisualc.asp

and many more ADO/C++ articles on the web.

As database I would suggest the free MSDE2000A or SQL Express Beta (for
non-production environment).

--
Greetings
Jochen

My blog about Win32 and .NET
http://blog.kalmbachnet.de/
Nov 17 '05 #2
Jochen Kalmbach [MVP] wrote:
For starting database programming, I would recommend C# and the
.NET-Framework, because the ADO.NET classes are easier that the C++
counterparts.

What are the "C++ counterparts"?
Nov 17 '05 #3
snag wrote:
I'VE JUST STARTED PROGRAMMING, WHICH I HAVEN'T DONE SINCE THE OLD BASIC.
I'VE CHOSEN C++ AS THE PROGRAMMING LANGUAGE BUT I DON'T KNOW IF I'VE CHOSEN
THE RIGHT PATH .
MY AIM IS TO CREATE DATABASES FROM SCRATCH WITHOUT HAVING TO USE ACCESS.
WHAT I NEED IS INFORMATION ON C++, WHICH COMPILERS TO USE AND IF IT IS OK TO
START WITH C++ OR BETTER TO WITH A DIFFERENT LANGUAGE BEFORE PASSING TO C++.
CAN YOU ADVISE ME?

It is OK to start with C++.
You can check this page of mine:

http://www23.brinkster.com/noicys/learningcpp.htm
Nov 17 '05 #4
Hi Ioannis!
For starting database programming, I would recommend C# and the
.NET-Framework, because the ADO.NET classes are easier that the C++
counterparts.


What are the "C++ counterparts"?


Mabe you have missed to read to the end:
For C++ and database you can start with
http://msdn.microsoft.com/library/en...oftvisualc.asp
and many more ADO/C++ articles on the web.

As database I would suggest the free MSDE2000A or SQL
Express Beta (for non-production environment).

--
Greetings
Jochen

My blog about Win32 and .NET
http://blog.kalmbachnet.de/
Nov 17 '05 #5
>> What are the "C++ counterparts"?
>> For C++ and database you can start with
>>

http://msdn.microsoft.com/library/en...oftvisualc.asp


Maybe it is better to start at to have an overview of database access:
http://msdn.microsoft.com/library/en...dataaccess.asp

--
Greetings
Jochen

My blog about Win32 and .NET
http://blog.kalmbachnet.de/
Nov 17 '05 #6
Jochen Kalmbach [MVP] wrote:
Mabe you have missed to read to the end:

..NET facilities are the *same* for all languages. So in .NET programs, C++ programmers use
ADO .NET too.
Nov 17 '05 #7
Ioannis Vranos wrote:
.NET facilities are the *same* for all languages. So in .NET programs,
C++ programmers use ADO .NET too.

For example, in
http://msdn.microsoft.com/library/de...classtopic.asp

pay attention on the C++ part. :-)
Nov 17 '05 #8
Hi Ioannis!
Mabe you have missed to read to the end:


.NET facilities are the *same* for all languages. So in .NET programs,
C++ programmers use ADO .NET too.


Maybe I understood the question a little bit different than you... :->

I though about C++ programming "in general"; not only in managed worlds
(of course this is a managed C++ newsgroup...)

--
Greetings
Jochen

My blog about Win32 and .NET
http://blog.kalmbachnet.de/
Nov 17 '05 #9
Jochen Kalmbach [MVP] wrote:
Maybe I understood the question a little bit different than you... :->

I though about C++ programming "in general"; not only in managed worlds
(of course this is a managed C++ newsgroup...)

I can't understand your answer. :-) C# is not tied with ADO .NET, that is, ADO .NET is not
part of the language.

C# language (more accurately C#/CLI) is just the syntax that takes advantage of a CLI
compliant VM machine (CLI is a standard). Its constructs map directly to the high-level
provided constructs of CLI, and does not provide something more than this.
For example if you know C# you can take advantage of Mono facilities (another CLI
compliant VM), like GTK#.
C++ on the other hand provides more than these (it comes with additional facilities of its
own).
So, there is not any "C++ counterpart" of ADO .NET.
Nov 17 '05 #10
Hi Ioannis!
So, there is not any "C++ counterpart" of ADO .NET.


The origin question was about:
"Learnin an language to make database access"

Therefor I recommended C#, because from my point of view it is easier
than C++. But this is my private opinion; and you have an other; so this
is no problem.
The standard-way for accessiong databases in C# (or .NET) is ADO.NET;
therefor I recommended ADO.NET.

If you want to access databases from "native" C++, you need also some
database-interface. This is what I meant with "C++ counterpart of ADO.NET".
And one interface is ADO:
http://msdn.microsoft.com/library/en...oftvisualc.asp
Or use any other interface you want:
http://msdn.microsoft.com/library/en...dataaccess.asp

But this is my personal opinion.

--
Greetings
Jochen

My blog about Win32 and .NET
http://blog.kalmbachnet.de/
Nov 17 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Andy | last post by:
Hello All, I'm currently getting into ASP and need some advice on any particular books or tutorials or websites that you can recommend so that I can get a good foundation on ASP as well as...
11
by: Mark | last post by:
Hi, For the last 2 years I've been developing vehicle tracking/telemetric software for a company as a self employed individual. The project is quiet big, and is going to be there flagship...
2
by: andyjgw | last post by:
Hi I'm a bit new to the designing of custom web page controls and using them in the properties designer window - need a little advice on a concept here. I have two properties in my control -...
1
by: Chris Lane | last post by:
Need Advice on prebuilt Exception Assemblies Please take a look at my post on the Titled: Need Advice on prebuilt Exception Assemblies posted on 04/21/04 Thank
3
by: Sigmathaar | last post by:
Hi, I'm need some advice about lists and vectors. I'm doing a program who needs to have sequential access of a non ordered unit of objects whose size decreases almost each time the sequence is...
4
by: Web_PDE_Eric | last post by:
I don't know where to go, or what to buy, so plz re-direct me if I'm in the wrong place. I want to do high performance integration of partial differential eqns in n dimensions (n=0,1,2,3..etc) I...
9
by: laststubborn | last post by:
Dear All, We have a big concern in our Database system. We have 2000 transactions daily in our database. We need to replicate some how the database for our fail over setup. I tried transactional...
7
by: John Paul | last post by:
I'm thinking of building an e-commerce site in php. Anyone got any advice in building one? What is the best way to implement a payment system? Are any legal issues involved? Thanks,
51
by: cool_ratikagupta | last post by:
hello friends i ha just started learning c can u all give me the tips to make myself strong in c lanuage . as i want to be the best in watever i do . so just a request from all of u here plz help...
7
by: SM | last post by:
Hello, I have a index.php template (2 columns). The right columns contains a bunch of links (interviews, poems, etc...) The left columns contains the actual article. So if I click on a link on...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.