Hi,
Again I'm glossy, and I made a server database connector DLL with Visual Studio 2008.
Q: Okay but what is this, and how I can use it?
A: Well, I guess you already know it, but if you don't, let me explain it.
With it you can connect and send MS SQL queries to your server.
Video: [Only registered and activated users can see links. Click Here To Register...]
Instructions:
Import DLL file as resource
Import some functions and the connector too in your code:
Okay, now create four textboxes and define some variables (you can skip it but it's recommended to don't skip it)
Then connect to our server and database:
Notice:
In the video I set the last propety in the code to False because I haven't sent any queries so that application isn't needed to excute the query.
Virustotal of DLL:: [Only registered and activated users can see links. Click Here To Register...]
Virustotal of sample project: [Only registered and activated users can see links. Click Here To Register...]
Good luck!
Edit:
I have added a sample project.
Again I'm glossy, and I made a server database connector DLL with Visual Studio 2008.
Q: Okay but what is this, and how I can use it?
A: Well, I guess you already know it, but if you don't, let me explain it.
With it you can connect and send MS SQL queries to your server.
Video: [Only registered and activated users can see links. Click Here To Register...]
Instructions:
Import DLL file as resource
Import some functions and the connector too in your code:
PHP Code:
Imports System.Data
Imports System.Data.SqlClient
Imports FourStory_Conn
PHP Code:
Dim server As String = host.Text
Dim username As String = user.Text
Dim pass As String = password.Text
Dim database As String = db.Text
Dim query As String = ""
PHP Code:
FourStory_Conn.Server.Connect(server, username, pass, database, query, True)
In the video I set the last propety in the code to False because I haven't sent any queries so that application isn't needed to excute the query.
Virustotal of DLL:: [Only registered and activated users can see links. Click Here To Register...]
Virustotal of sample project: [Only registered and activated users can see links. Click Here To Register...]
Good luck!
Edit:
I have added a sample project.