C# login database
Loading...
76,815
Uploader Comments (deafjackomonster)
Top Comments
-
C# And C++ are not the same languages.
-
Ummm, lawyers dont arrest people...
see all
All Comments (68)
-
@deafjackomonster Yeah no problem! :)
-
Thanks this helped and teached me a lot
-
man, you're the best. I had read some tutorials, but, none gave me help like yours. Ty, and don't stop making excellent videos.
-
@xmuchtoocrazyx Actually, niether C++ or C# have the "Sub" keyword. Both use "private void" in the sense you mean it - as far as I can gather :) -- Just fyi.
-
Thanks. It took about an hour, but I got it to work.
Loading...



Here's a couple of tips to make your code a bit smaller and more easy to understand. First of all, instead of creating a new instance of a string you could just use it all as one.
Console.WriteLine("Username: " + Console.ReadLine());
Same would go with the password. Another thing you could do is create the SqlConnection instance within the class so it doesn't have to be recreated each time a function is called. You could also add to the end of your string "/n" instead of.
Console.WriteLine("");
HQLegendary 5 months ago
@HQLegendary Thats a good bunch of tip, cheers mate. Better then the flame of others :P
deafjackomonster 5 months ago
easy way to identify if it's c++ or c#, c++ has sub categories (private SUB), c# has (private void)
If it says SUB, it's C++, if it says VOID, it's C#
Quick tip :P
xmuchtoocrazyx 8 months ago 4
@xmuchtoocrazyx Or you just look at the title of the video...
deafjackomonster 8 months ago 3