Oracle
Jan 6 2010, 5:00 am
By: omginbd  

Jan 6 2010, 5:00 am omginbd Post #1



Well the deal is that right now I am signed up for a beginning in oracle programming class for next semester. However, I don't know if this is what I should be learning. I know that it's always good to have another language beneath the belt, but I don't plan on doing much database programming (which is what I understand oracle to be). The alternative is that I take a programming class from the local collage, but I'm not sure if they offer one yet, or if it's about oop, which is all I'm interested in. Any opinions on which I should choose?



None.

Jan 6 2010, 9:33 pm Doodle77 Post #2



Learning database programming will help you with future jobs unless you get lucky and become a game programmer. Pretty much everything else touches a database at some point.



None.

Jan 18 2010, 8:29 pm Kow Post #3



And SQL is very easy compared to pretty much every other language.

This coming from someone who has taken an oracle SQL class.



None.

Jan 21 2010, 6:08 pm Kyrax Post #4



Quote from omginbd
Well the deal is that right now I am signed up for a beginning in oracle programming class for next semester. However, I don't know if this is what I should be learning. I know that it's always good to have another language beneath the belt, but I don't plan on doing much database programming (which is what I understand oracle to be). The alternative is that I take a programming class from the local collage, but I'm not sure if they offer one yet, or if it's about oop, which is all I'm interested in. Any opinions on which I should choose?

Well OOP is not a very hard concept to understand...Utilizing it, is where it gets to be a hard process...

I'd stick with the Oracle class and find out where you can go from there :)



None.

Jan 21 2010, 6:18 pm CecilSunkure Post #5



I don't find OOP very complicated. I think that most people are boggled by OOP when they go and try to learn OO, and basic programming fundamentals as well. The worst thing you can do is something like trying to learn object orientation, C, and some sort of GUI all at the same time. Doing that is setting yourself up for failure. If you really want to learn OO, I suggest learning how to make a variety of basic console programs with C, and once proficient (without reference to an outer source), move onto OOP. If you don't know how to use basic things like arrays and variables, in conjunction with control structures like if then, and various types of loops, then it's going to be difficult to understand object orientation. What I did, is I learned C, and in doing so I learned some "limitations" of C. Once I started hitting on OO, I understood OO as well as the advantages of it.



None.

Jan 21 2010, 6:23 pm Kyrax Post #6



Quote from CecilSunkure
I don't find OOP very complicated. I think that most people are boggled by OOP when they go and try to learn OO, and basic programming fundamentals as well. The worst thing you can do is something like trying to learn object orientation, C, and some sort of GUI all at the same time. Doing that is setting yourself up for failure. If you really want to learn OO, I suggest learning how to make a variety of basic console programs with C, and once proficient (without reference to an outer source), move onto OOP. If you don't know how to use basic things like arrays and variables, in conjunction with control structures like if then, and various types of loops, then it's going to be difficult to understand object orientation. What I did, is I learned C, and in doing so I learned some "limitations" of C. Once I started hitting on OO, I understood OO as well as the advantages of it.

C doesn't have OOP capabilities...At least from what I've always been told by C programmers. Which is why C++ was made and all that stuff.

C++ isn't the only OOP language, either...But I do recommend it to anyone who wants to learn programming.

Java is really good for Network stuff (and is pretty much pure OOP) and Mobile devices. C/C++ for software development/engineering. C# (also pretty much pure OOP) is good for creating Web based software-esque things, but sucks because its not that great at being cross-platform (which is why I would stick with C/C++ in that scenario)

Learning a lot of different languages is a good thing in my opinion, because then you can utilize different aspects of different languages to make it easier for what you are trying to do.



None.

Jan 21 2010, 6:51 pm CecilSunkure Post #7



Well it really depends on what you want to do with your programming. If you are going to be coding things that are extremely performance intensive, C++ is the only way to go. If you just want to be a general coder, then you could learn on Java or C/C++ just fine. If you want to get into the game dev industry, C++ is the absolutely only way to go.

I recommend to anyone who wants to learn programming to start with C, then move onto C++. I also really like Python, because of how simple and fun it is to code things in :P

If you just want to be able to cook up quick little programs, but aren't interested in coding professionally, I would recommend Python, or maybe VB.



None.

Jan 21 2010, 7:02 pm Kyrax Post #8



Quote from CecilSunkure
Well it really depends on what you want to do with your programming. If you are going to be coding things that are extremely performance intensive, C++ is the only way to go. If you just want to be a general coder, then you could learn on Java or C/C++ just fine. If you want to get into the game dev industry, C++ is the absolutely only way to go.

I recommend to anyone who wants to learn programming to start with C, then move onto C++. I also really like Python, because of how simple and fun it is to code things in :P

If you just want to be able to cook up quick little programs, but aren't interested in coding professionally, I would recommend Python, or maybe VB.

Agreed.

I have no knowledge of C, but I know C++...I guess it just all depends on the individual's ability to comprehend and learn things :D

I've heard good things about Python, and I also think they use Python in Server scripting (or maybe it was Perl)



None.

Jan 22 2010, 7:52 am Jack Post #9

>be faceless void >mfw I have no face

If you know c++, you pretty much know C.

It'd be Perl, not python, that's used for server scripts, but there are probably more modern languages you could learn instead.



Red classic.

"In short, their absurdities are so extreme that it is painful even to quote them."

Jan 22 2010, 7:58 am ShadowFlare Post #10



Python can also be used if the server has it installed, though.



None.

Jan 22 2010, 4:54 pm Kyrax Post #11



Quote from name:zany_001
If you know c++, you pretty much know C.

It'd be Perl, not python, that's used for server scripts, but there are probably more modern languages you could learn instead.

C syntax is different from C++...So you don't really 'pretty much know C' if you know C++....



None.

Jan 22 2010, 5:41 pm CecilSunkure Post #12



No actually everything you can do in C is applicable to C++. You can think of C++ as a mega expansion to C, sort of how everything in SC original is compatible with the expansion, but not vice-versa.



None.

Jan 22 2010, 5:48 pm Kyrax Post #13



Quote from CecilSunkure
No actually everything you can do in C is applicable to C++. You can think of C++ as a mega expansion to C, sort of how everything in SC original is compatible with the expansion, but not vice-versa.

I know, but what I'm saying is that the syntax and keywords are different.

C: printf("hello, world\n");
C++ cout << "Basic output to the console";

I know C++ but I don't know jack about C..Lol!



None.

Jan 22 2010, 5:54 pm CecilSunkure Post #14



You can use printf and sprintf in C++, but the standard I/O stream of C++ is a more commonly used alternative. C++ is backwards compatible.



None.

Jan 22 2010, 6:35 pm Kyrax Post #15



Quote from CecilSunkure
You can use printf and sprintf in C++, but the standard I/O stream of C++ is a more commonly used alternative. C++ is backwards compatible.

I'm not denying that, so why are you stating it? I've simply stated that C and C++ have different syntax and keywords...Care to point out where I've stated they aren't compatible with one another? Lolz



None.

Jan 22 2010, 6:55 pm omginbd Post #16



Quote from CecilSunkure
No actually everything you can do in C is applicable to C++. You can think of C++ as a mega expansion to C, sort of how everything in SC original is compatible with the expansion, but not vice-versa.

What? An rl example using starcraft? :hurr::hurr: My head asplode. You sir, win the internet.



None.

Jan 22 2010, 8:05 pm ShadowFlare Post #17



What you are comparing are the C and C++ libraries, not the languages themselves. Using the << operator for output and >> for input is not a type of syntax that is really part of the C++ language. It is just something put into the standard C++ libraries, but any C++ library could do it, and it didn't need to be those specific operators either - another operator could have been chosen instead when writing up the library. It is using a feature that is in C++ and not in C to do this, however.



None.

Jan 22 2010, 9:36 pm ClansAreForGays Post #18



Quote from Kyrax
C doesn't have OOP capabilities...
Wrong.




Jan 22 2010, 9:46 pm Kow Post #19



Quote from ClansAreForGays
Quote from Kyrax
C doesn't have OOP capabilities...
Wrong.
Care to say why? Everything I've seen and heard about C is that it's not.


Unless you want to count a structure an object. Which it isn't really. Especially in C. C++, sure, but not C.



None.

Jan 22 2010, 10:41 pm CecilSunkure Post #20



Quote from ClansAreForGays
Quote from Kyrax
C doesn't have OOP capabilities...
Wrong.
Yeah, I'm interested in knowing what you are talking about..



None.

Options
  Back to forum
Please log in to reply to this topic or to report it.
Members in this topic: None.
[12:52 pm]
Vrael -- if you're gonna link that shit at least link some quality shit: https://www.youtube.com/watch?v=uUV3KvnvT-w
[11:17 am]
Zycorax -- :wob:
[2024-4-27. : 9:38 pm]
NudeRaider -- Ultraviolet
Ultraviolet shouted: NudeRaider sing it brother
trust me, you don't wanna hear that. I defer that to the pros.
[2024-4-27. : 7:56 pm]
Ultraviolet -- NudeRaider
NudeRaider shouted: "War nie wirklich weg" 🎵
sing it brother
[2024-4-27. : 6:24 pm]
NudeRaider -- "War nie wirklich weg" 🎵
[2024-4-27. : 3:33 pm]
O)FaRTy1billion[MM] -- o sen is back
[2024-4-27. : 1:53 am]
Ultraviolet -- :lol:
[2024-4-26. : 6:51 pm]
Vrael -- It is, and I could definitely use a company with a commitment to flexibility, quality, and customer satisfaction to provide effective solutions to dampness and humidity in my urban environment.
[2024-4-26. : 6:50 pm]
NudeRaider -- Vrael
Vrael shouted: Idk, I was looking more for a dehumidifer company which maybe stands out as a beacon of relief amidst damp and unpredictable climates of bustling metropolises. Not sure Amazon qualifies
sounds like moisture control is often a pressing concern in your city
[2024-4-26. : 6:50 pm]
Vrael -- Maybe here on the StarEdit Network I could look through the Forums for some Introductions to people who care about the Topics of Dehumidifiers and Carpet Cleaning?
Please log in to shout.


Members Online: Roy