BP Forums
connect to mysql client - Printable Version

+- BP Forums (https://bpforums.info)
+-- Forum: Archived Forums (https://bpforums.info/forumdisplay.php?fid=55)
+--- Forum: Archived Forums (https://bpforums.info/forumdisplay.php?fid=56)
+---- Forum: VB.NET (Visual Basic 2010/2008) (https://bpforums.info/forumdisplay.php?fid=8)
+---- Thread: connect to mysql client (/showthread.php?tid=364)



connect to mysql client - cry1978 - 07-11-2011

connect to mysql client in visual basic 2008

I saw your tutorial
<!-- m --><a class="postlink" href="http://www.youtube.com/watch?v=r7V2vLK9rHc">http://www.youtube.com/watch?v=r7V2vLK9rHc</a><!-- m -->

You said that this would be useful for a database online?

I have a project and it needs to connect to mysql client for my online website to check validation fields, how do I protect my database username, database name, and password in my visual basic project?

how does a programmer set this up for protection?

I see your encryption tutorial, do I put this encryption code within my project to protect database info? and do I leave this encrypted code in the project and leave the form that created my database details?

I am not sure how to use this for my database, if I leave the encrypt file in the project I am sure people can decrypt it lol, so how do I do this please?

can you give me a tutorial on this?


Re: connect to mysql client - xolara - 07-11-2011

to protect your .exe files from being de-compiled
you will ofc need a encrypter (This you should do with both your .exe and your custom .dll files!)

You can use encrypted password protection for your users but that can be easier said than done <!-- sSmile --><img src="{SMILIES_PATH}/icon_e_smile.gif" alt="Smile" title="Smile" /><!-- sSmile -->


Re: connect to mysql client - brandonio21 - 07-12-2011

Yes, the best way to prevent your code from being decompiled, is by using what is called a Code Protector.. It pretty much tricks the code decompiler into thinking that there is no code in the file.

<!-- m --><a class="postlink" href="http://www.eziriz.com/dotnet_reactor.htm">http://www.eziriz.com/dotnet_reactor.htm</a><!-- m --> That is one that I have been looking into purchasing for myself. Unfortunately, it is indeed rather pricy.