• 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

    • This is about the EU given consumers options, Apple is all about not giving options and locking you into its own services, this hurts Apple far more than it hurts the EU market because it makes Apple products look less appealing by Apple refusing to offer its own service because they have to give options to rivals, the end results are consumers might look at alternatives like Android. It's a game Apple can't really win when there are alternatives and Apple will in time change course on this, until then, let Apple hurt themselves in the EU market.
    • Microsoft unveils new Surface Laptop with improved trackpad, Snapdragon X2, and more by Taras Buria Microsoft's new Surface Laptop Ultra generated a lot of buzz earlier this month, but in addition to its most powerful laptop with an NVIDIA chip, Microsoft also has a more affordable laptop lineup, which has been waiting for an update for quite a while. Today, Microsoft announced the eighth-generation Surface Laptop. The new Surface Laptop is powered by the Snapdragon X2 Plus and X2 Elite processors. These chips offer faster CPU performance, up to 58% faster graphics, and 80 TOPS Neural Processing Units (NPUs) for on-device AI processing. Like the previous models, these chips retain their great energy efficiency, and Microsoft says that buyers can expect up to 20 hours of work on a single charge. The laptop is available in two sizes: 13.8-inch and 15-inch. You will have a hard time finding visual differences between the new and previous models, as Microsoft is not taking any major design leaps, except for the new Jade color, which may look familiar to Surface Laptop 5 owners. Other colors include Platinum, Black, and Dune. The 15-inch variant got a higher-resolution display. It is a 3,270 x 2,180 resolution screen with a pixel density of 262 ppi (the 13-inch model has a 201 ppi density) and a maximum brightness of 600 nits SDR and HDR. Unlike the Surface Pro 12th-gen, which is available with optional OLED displays, the Surface Laptop sticks with IPS, a 1,300:1 contrast ratio, a 120Hz refresh rate, and a 3:2 aspect ratio. Another notable change in the Surface Laptop 8 is its trackpad. It now provides haptic feedback when you perform various actions in apps and the operating system. It is a relatively new feature that Microsoft brought to Windows 11 in recent updates, and it is only available on certain devices, such as the Logitech MX Master 4, Surface Slim Pen 2, the upcoming Surface Laptop Ultra, and now the Surface Laptop 8. The new Surface Laptop with the new Surface Pro Like its tablet-shaped sibling, the new Surface Laptop is notably more expensive. It starts at a $1,599 for a 13.8-inch configuration with a 256GB SSD and 16GB of RAM. However, in the US, the base model has double the storage while keeping the same price. Available configurations include up to 64GB of memory and up to 2TB SSD (user-removable PCIe Gen4). The Surface Laptop 8 is now available for purchase on the official Microsoft website.
    • Microsoft announces 12th-gen Surface Pro with Snapdragon X2 processors by Taras Buria So far, 2026 has been rich in Surface announcements. Microsoft started with a fresh lineup of Surface for Business devices powered by Intel's new Core Ultra 300 processors. Then the company revealed the Surface Laptop Ultra, its most powerful laptop with NVIDIA's RTX Spark processor. Now, it is time for new Surface Pro and Surface Laptop models with Qualcomm processors. Microsoft's original Copilot+ PCs with Snapdragon X1 chips debuted in late May 2024. Two years later, Microsoft is finally updating the lineup with new models featuring Snapdragon X2 processors. The 12th-gen Surface Pro continues the well-established formula of Microsoft's flagship tablet, and Microsoft is not even changing colors, as the tablet will be available in three colors: Dune, Black, and Platinum. The most important changes are mostly hidden inside. Microsoft switched from the Snapdragon X1 to the new Snapdragon X2, which promises up to 53% faster graphics performance than the previous generation and up to 15.5 hours of battery life. The built-in NPU is also much more powerful, and it can run at up to 80 TOPS for on-device AI processing. Like before, the new Surface Pro is available with a 13-inch IPS display, and Microsoft is still offering OLED as a separate, more expensive configuration. Speaking of configurations, the Surface Pro will be available with a 10-core Snapdragon X2 Plus or a 12-core Snapdragon X2 Elite. Microsoft expanded the available RAM configurations to 64GB (previously 32GB was the maximum), while storage remains unchanged at 256GB, 512GB, or 1TB of user-replaceable PCIe Gen4 SSDs. The new Surface Pro and the Surface Laptop Other specs remain mostly unchanged. The computer has the same 1440p Windows Hello webcam, two USB4 ports for charging, data, and display output, Wi-Fi 7 and Bluetooth 5.4 support, dual speakers, and compatibility with Surface Pro Signature and Flex keyboards. With that said, there is one very important aspect of the Surface Pro that changed significantly, and it is the price. While the previous-gen Surface Pro launched at $999 for the base configuration, in 2026, the entry-level Surface Pro with Snapdragon X2, 16GB of memory, and 256GB will set you back an eye-watering $1,499. To sweeten the pill, Microsoft is running a limited-time promotion where Surface Pro buyers can get a free Surface Pro 13-inch Keyboard. The promo runs from June 16 through June 30. The new Surface Pro is available now on the official Microsoft Store website.
    • MakeMKV 1.18.4 Beta by Razvan Serea MakeMKV is a format converter, otherwise called "transcoder". It converts the video clips from proprietary (and usually encrypted) disc into a set of MKV files, preserving most information but not changing it in any way. The MKV format can store multiple video/audio tracks with all meta-information and preserve chapters. There are many players that can play MKV files nearly on all platforms, and there are tools to convert MKV files to many formats, including DVD and Blu-ray discs. Additionally MakeMKV can instantly stream decrypted video without intermediate conversion to wide range of players, so you may watch Blu-ray and DVD discs with your favorite player on your favorite OS or on your favorite device. Reads DVD and Blu-ray discs Reads Blu-ray discs protected with latest versions of AACS and BD+ Preserves all video and audio tracks, including HD audio Preserves chapters information Preserves all meta-information (track language, audio type) Fast conversion - converts as fast as your drive can read data. No additional software is required for conversion or decryption. Available for Windows, Mac OS X and Linux Functionality to open DVD discs is free and will always stay free. All features (including Blu-ray decryption and processing) are free during BETA. MakeMKV 1.18.4 changelog: Small improvements and bugfixes Notable bug fixes: Fixed linux armhf binary crash on certain architectures Download: MakeMKV 1.18.4 Beta | 15.7 MB (Free, paid upgrade available) Download: MakeMKV for Mac OS X | 41.9 MB Links: MakeMKV Website | MakeMKV for Linux | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Year In
      Console General earned a badge
      One Year In
    • One Year In
      Twozo Technologies earned a badge
      One Year In
    • One Month Later
      Twozo Technologies earned a badge
      One Month Later
    • Week One Done
      Twozo Technologies earned a badge
      Week One Done
    • Veteran
      branfont went up a rank
      Veteran
  • Popular Contributors

    1. 1
      +primortal
      525
    2. 2
      +Edouard
      209
    3. 3
      PsYcHoKiLLa
      113
    4. 4
      Steven P.
      90
    5. 5
      Nick H.
      71
  • Tell a friend

    Love Neowin? Tell a friend!