| View previous topic :: View next topic |
| Author |
Message |
Hurr™ How do I cheat?
Reputation: -1
Joined: 05 Apr 2010 Posts: 5 Location: Sweden.
|
Posted: Wed Aug 18, 2010 9:54 am Post subject: [Request] VB Online Usersystem |
|
|
At the moment im learnig VB, Just cause its easy and still you can do pretty much with it, i have a project and i coded a login system, but my login system is using a Database thats in the file self, so people need to keep updating if there are more users (well, actually only the user it selfs but updating is handy cause it contains more then lol) so i was wondering if anyone knows how to make a database online and let the program retrieve data from it.
~Epixors™
PS: I Would love quick answer /awesomeface
|
|
| Back to top |
|
 |
AhMunRa Grandmaster Cheater Supreme
Reputation: 27
Joined: 06 Aug 2010 Posts: 1117
|
Posted: Wed Aug 18, 2010 10:02 am Post subject: |
|
|
mysql is a decent free database software.
mysql(dot)com
You could use Access to create your database, but I'm not sure if you need an ODBC adapter for VB, I don't use VB much except in Excel macros.
Visual C# would be much easier to learn and there is current documentation out there detailing what you want to do. Your app could either be a webapp or a standalone program.
_________________
<Wiccaan> Bah that was supposed to say 'not saying its dead' lol. Fixing >.> |
|
| Back to top |
|
 |
Hurr™ How do I cheat?
Reputation: -1
Joined: 05 Apr 2010 Posts: 5 Location: Sweden.
|
Posted: Wed Aug 18, 2010 10:04 am Post subject: |
|
|
| AhMunRa wrote: | mysql is a decent free database software.
mysql(dot)com
You could use Access to create your database, but I'm not sure if you need an ODBC adapter for VB, I don't use VB much except in Excel macros.
Visual C# would be much easier to learn and there is current documentation out there detailing what you want to do. Your app could either be a webapp or a standalone program. |
ty, i know about MySQL, my problem is how to connect with the database.
Also, VB is a easy to learn language, Im Dutch and i cant find good tutorials for C# or C++ But i have a nice site for VB, i also already made some stuff in VB So i wanna continue the project (I Made a Notepad and a Password Gen and that login system+auto updater lol)
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Wed Aug 18, 2010 3:23 pm Post subject: |
|
|
Storing mysql database information inside the client will lead you to disastrous results. If you want to build a connection between a database backend and your application, look into web services for .NET, they will be the best thing for you to use if you plan to have any database connectivity and such.
Keep in mind this will require your server to be .NET compatible meaning it will need to be a Windows server, or a Linux server with an emulated .NET environment. (Such as Mono.)
_________________
- Retired. |
|
| Back to top |
|
 |
Cheat Engine User Something epic
Reputation: 60
Joined: 22 Jun 2007 Posts: 2071
|
Posted: Wed Aug 18, 2010 3:40 pm Post subject: |
|
|
| Alternatively, connect to a server who then connects to the mysql database or make a xAMP server and make web requests.
|
|
| Back to top |
|
 |
iPromise Grandmaster Cheater
Reputation: -1
Joined: 27 Jun 2009 Posts: 529 Location: Canada
|
Posted: Wed Aug 18, 2010 9:01 pm Post subject: |
|
|
One common method to make a login system properly is to use MySQL. You can obtain a free database here: www.db4free.net. Have your client send data to the server, and have the server sent data back for the login system. Keeping MySQL inside the client isn't safe, somebody can easily grab your database credentials and your fucked.
Another way to do it is to keep a file record of the users uploaded on a server, w/e. Then download the file or open it and read from it, and compare matches. This method works but isn't the best method, as it can easily be hacked and username / password information can be leaked. If you are interested in this method, I suggest you MSDN URLDownloadToFile().
|
|
| Back to top |
|
 |
YoungDragon Grandmaster Cheater Supreme
Reputation: 36
Joined: 23 Sep 2009 Posts: 1105 Location: 192.168.1.1
|
|
| Back to top |
|
 |
Hurr™ How do I cheat?
Reputation: -1
Joined: 05 Apr 2010 Posts: 5 Location: Sweden.
|
Posted: Sat Aug 21, 2010 1:38 pm Post subject: |
|
|
At the first, thanks for the reply's Im finding out how to let it connect to a MySQL Server, and YoungDragon, i already made such a program, just a simple one, thanks all,
~Epixors™
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
|
| Back to top |
|
 |
|