• 0

Looking to learn a new programming language


Question

I want to learn something that is fairly easy to pick up, but do what I want it to do.

Right now I am taking a course of VB in college, but it is only covering the very basics, such as change font colour, add fields together etc etc.

I am looking for a language to help my business grow by creating a program to interact with my web site, and get data from the MySql database. I am sure all languages can do this one way or another, but what is the easy way to do this, using the easiest language possible

Edited by lylesback2

Recommended Posts

  • 0

I know PHP :p I want a real programming language (GUI) interface language that can help me reach my database. I programmed my entire web site (in PHP), but now I want to moderate it from my PC without using a browser.

  • 0

I came here in mind that you were talking about real languages (spoken) based on the title, and wanted to say that you should learn which you need the most and not just learn one for the kicks of it, but I guess the same could be said about programming languages. Too bad I just know noting about them (programing languages), so I'm not much of a help.

  • 0
I came here in mind that you were talking about real languages (spoken) based on the title, and wanted to say that you should learn which you need the most and not just learn one for the kicks of it, but I guess the same could be said about programming languages. Too bad I just know noting about them (programing languages), so I'm not much of a help.

Boy you guys are strict :p

Okay, changed my title, and no I am not looking to learn another language.. i'm busy learning Japanese at the moment.

I want to learn a new programming language, on top of what I know. PHP, HTML, JavaScript, (Some asp)

  • 0
I know PHP :p I want a real programming language (GUI) interface language that can help me reach my database. I programmed my entire web site (in PHP), but now I want to moderate it from my PC without using a browser.

Then VB is nice choice, but if you want to learn good language, chose C# (C sharp) !

  • 0

I vote for C# as it'll help you achieve what you want. It also helps that you know java and you're currently taking VB. You already have a big advantage, take a step forward and eat C# books. I would personally recommend:

-Apress - Beginning C# 2008 from novice to professional

-Wrox - Professional C# 2008

Happy reading, learning, thinking, drinking a lot of coffee.

  • 0

MySQL GUI Tools

C# or C++ would work best IMHO. I personally prefer programming in unmanaged C++, but sometimes .NET makes things a lot easier and a lot faster. It's just a matter of preference.

FWIW, C# is a lot like Java as far as the syntax. It seems like it takes the best of C++ and uses Java syntax and ideals. For example, in Java, you have packages, whereas in C++ and C#, you have namespaces. In C++, things don't need to be in a class. In Java and C#, everything belongs to a class. In C++, the return value of the main() function determines the exit status of the program. C# and Java return nothing because the .NET framework or JRE contains the real main function that is used to determine exit status; if an exception is uncaught then the exit status is most certainly not 0, the magic number representing the absence of runtime errors.

Of course, the .NET library is incomparable to that of the Java APIs, and vanilla C++ only has the STL that is designed to provide basic, yet useful, cross-platform functionality. If you went with Visual C++, then you'd be able to take advantage of the .NET library. If Visual J# is still developed and you used that, you could take advantage of some Java functionality, hence the 'J' in "J#", while also leveraging the power of the .NET library.

MySQL also has what are known as "connectors" for different programming languages (and stuff). Check them out here.

  • 0

Just go with Python. You can do any kind of programming with it. Python is very easy to learn and have a very good language structure. its very fun to do programming with python.

But I suggest strongly that you learn C/C++. You should learn C/C++ first if you really want to learn programming, if you have a good basic with C/C++, learning other languages are like walk in the park.

For web development learn Python with Django or Google App engine and its far better then PHP. You can try Ruby too. Its python like and Ruby on the Rails framework is very popular at this moment. or as you already know VB.Net you can go for ASP.Net base development.

But I strongly suggest don't go with VB or PHP now. VB or PHP is not good as a starting programming language and PHP is not even a programming language.

Edited by tmahmood
  • 0

wow, some of you guys didn't read the full topic.

I already know PHP, and I am not looking to relearn that, nor did I ever call it a programming language. I want to develop a program that can help monitor my web site from my desktop. I have everything stored inside a MySql database, and simply want to recall the data, so I can display it.

I was just looking to see what the easiest programming language out there was to help complete this task. I wanted to generally learn more and more of the language, and help expand on the project over the years.

  • 0

Everybody is 100% correct about Python. It really is easy to learn. Ruby is easy when you first start, but I'm not sure how it is when you get more advanced because I just couldn't bear to leave Python for Ruby. I finished going through a rather long Ruby tutorial and created some programs, and then I created those same programs in Python. In the end, Python just felt better, and it seemed faster too when I ran a Fibonacci generator that did its work recursively. Of course, the speed in PHP is poor compared to those two. Normally PHP has a lot of different resources to load at once (they're libraries, so loading the library slows things down...) whereas Python just loads its built-ins by default, and you load whatever else you want explicitly. :p

As for VB, I don't have any personal experience with it, so I can't say whether it is good or bad. I will note that if you already know it, and you can work with ASP.NET, then it'll save a lot of time since you won't be learning a completely new language. I do know that C and C++ programmers complain about VB developers a lot though... I've heard things like "VB programmers are just script kiddies that know how to use an IDE and compile programs". To get an idea of what I mean, check out this page and this page. VB programmers have a horrible reputation...

  • 0
wow, some of you guys didn't read the full topic.

I already know PHP, and I am not looking to relearn that, nor did I ever call it a programming language. I want to develop a program that can help monitor my web site from my desktop. I have everything stored inside a MySql database, and simply want to recall the data, so I can display it.

I was just looking to see what the easiest programming language out there was to help complete this task. I wanted to generally learn more and more of the language, and help expand on the project over the years.

Look, I have the perfect language for this... How about this... PHP! It's great! :D

Haha, just kidding. C# with ADO.NET is pretty straightforward for database work, and you'd then interface with your MySQL db with a MySQL OLEDB driver, like this one. And that site includes sample code too, but you should perhaps first learn C# reasonably well, and next ADO.NET, from some sort of tutorial.

Of course, C# is no requirement. This is .NET we're talking about. VB.NET will do just as fine. The major differences are just in syntax, not in the API's. As for your project here, the choice between C# and VB.NET will not matter in terms of capabilities. You'd just pick C# if you wanted to learn something new, not because it's "better" for this task, because it really isn't. It's equally good.

  • 0

Oh, and if I was to pick a web development oriented language, I think I'd go for Python too. :) I'm personally interested in learning that one. And if you really want to do desktop development, there are things like wxPython, and you'll perhaps even go cross-platform in the process with that solution. MySQL bindings with Python is also no problem at all. But it's probably more cumbersome to set up than just start coding away in C# and the designer.

Edited by Jugalator
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • 1. Define "better". 2. It's still more expensive than equivalent PCs so...
    • Major Xbox layoffs may claim South of Midnight developer Compulsion entirely by Pulasthi Ariyasinghe Microsoft has been making major changes in its gaming wing Xbox for a few months now, including the appointment of a new CEO, a large number of leadership changes, and strategy shifts. However, the company is seemingly also looking at initiating a major layoffs wave at Xbox and perhaps even a studio closure. The new report lands from Kotaku, Xbox first-party developer Compulsion Games is being shuttered soon by Microsoft. For those unfamiliar with the studio, it's the team behind Contrast (2013), We Happy Few (2018), and South of Midnight (2025). Its latest game was quite well received, even winning a Peabody Award for its writing. It even received a 9/10 in Neowin's own review, highlighting its engaging storyline, gorgeous world, and curious characters. The studio joined Xbox Game Studios in 2018, just as Microsoft announced it is acquiring Playground Games, Undead Labs, and Ninja Theory. Despite recent listings for new staff roles, according to the new report, Compulsion Games is being closed entirely, with over 90 staff being let go. Kotaku also added that the studio's leadership is in negotiations with Microsoft about this decision, but no official details have been revealed yet. The report lands just as two senior managers of Xbox leave their posts at Microsoft Gaming. Head of Xbox Game Studios Craig Duncan and chief of staff Louise O'Connor originally began their journey in Rare and have been a part of Xbox for over two decades. Dunkan has been responsible for games like Kinect Sports and Sea of Thieves, while O'Connor was primarily working on Rare's Everwild project before its cancelation. If this report about the studio shutdown is accurate, this may just be the start of a major new layoffs wave at Xbox Game Studios. There are also rumors of Arkane Studios being heavily affected. As always, take all these reports with a grain of salt until something official materializes from Microsoft or the studios.
    • The flaw with this analysis is that this laptop has a cellphone CPU in it. In the Intel world, that would be an N150 and those are everywhere, even in low end laptops. You can get an N150 based NUC with 16GB RAM and 256GB-512GB SSD... NOT soldered in... for < $500 Canadian (around US$360). The problem is two fold: tech bloggers/writers on most tech site (like this one, ironically) overvalue Apple and apparently aren't in the same earnings class as most regular people. As a result, we get breathless articles about how everyone needs a folding phone when most people just cannot afford one... or really need one. And we get Apple used as the baseline metric regardless of whether that comparison makes any sense. If Dell or HP released a retail laptop with a cellphone motherboard, you'd be all over them for doing that - but Apple does it and it's genius. I see articles suggesting what Samsung - a company that basically started the foldable phone market and has built them for eight years - needs to do to compete with Apple's unreleased, unspecced and unseen folding phone. Sorry, no - if the Neo (really creative name there BTW - still, better than the Go, the other "creative" product name everyone's using) encourages PC makers to make cellphone laptops using lower end ARM processors, we all lose. It's a step backwards and a capitulation to the fact that semiconductor makers and computer OEMs (and tech bloggers) have totally lost the plot.
    • Everyone should install this extension and ignore games that use AI. https://chromewebstore.google....nnigaaeelfkeomjcngmnh?pli=1 https://addons.mozilla.org/en-US/firefox/addon/ai-warning-for-steam/
  • Recent Achievements

    • One Year In
      ThatGuyOnline earned a badge
      One Year In
    • Week One Done
      Jeroen Wilms earned a badge
      Week One Done
    • Week One Done
      rolfus earned a badge
      Week One Done
    • One Month Later
      Leroy Jethro Gibbs earned a badge
      One Month Later
    • Conversation Starter
      flexorcist earned a badge
      Conversation Starter
  • Popular Contributors

    1. 1
      +primortal
      506
    2. 2
      +Edouard
      199
    3. 3
      PsYcHoKiLLa
      127
    4. 4
      Steven P.
      82
    5. 5
      ATLien_0
      75
  • Tell a friend

    Love Neowin? Tell a friend!