by cliper
Saturday, August 16, 2008 5:04 AM
heh, I forgot to include the visual basic version. If I remember it right, I just told myself not to code vb anymore. But I can still code in both language so I decided to write some updates. :)
First, you need to change the connection string from the web.config file.
then run the application.
Still, I test the project twice in Debug mode. No release happened.
You can download the files below
mysql_datagrid_vb.rar (98.03 kb)
38140073-1451-4ee5-b2a9-9ac63b903697|0|.0
Tags:
ASP.NET | MySQL
by cliper
Friday, August 15, 2008 7:22 AM
hi, back again.. I'm glad that I'm not the only one reading my posts here.
There's someone e-mailed me today and would like to
have some samples on how to bind data into an asp.net datagrid control with MySQL. well, I ran to my computer
and code the app. And here it goes. It takes me 1 minute to code. Wow, so be careful with bugs. I runned it twice in a
debug mode. No release happen so please read the code first.
About comments, yes.. I only commented the web.config file since I don't know what to type from the code for now.
Still busy. But, I'll explain the code later when they ask. lol.
Anyway, there are lots of bulk blogpost (pending) in my notebook. I'll post it later when I'm home.
Again, thank you guys for reading.
Here's the project solution.
mysql_datagrid.rar (98.14 kb)
75993307-9e4c-4384-b3c6-67691bdd2081|0|.0
Tags:
ASP.NET | MySQL
by cliper
Wednesday, June 25, 2008 11:27 AM
Well, sometimes we asked how can we passed request parameters in our web application?
So if we have http://cliper.boholcentral.com/?request_id=test we need to get "test"
In our classic ASP web application, we do like
Request.QueryString("request_id")
probably, ASP.NET still uses this syntax and the most readable syntax could be:
C#
Request["request"];
VB
Request("request_id");
fb6831ff-8c91-4c67-96f9-6b34e6cdf296|0|.0
Tags:
ASP.NET | C#
by cliper
Friday, May 16, 2008 1:52 PM
Before you read, I consider that you are familiar with the following topics.
* MySQL Connector.NET
* Database Administration with MySQL
* Structured Query Languages
* and ASP.NET
Before writing a code, let’s add our third-party app library (connector.NET) in our Bin directory. Why? We need to add a reference in its base class since we’re going to use it as our data provider. One example is to access our mysql using queries. For that, I assume that you already have the binaries of MySQL Connector.NET. What I use in this tutorial is MySQL the Connector.NET 5.2.2, which is still in beta version. Bytheway, I don’t recommend using beta versions for production purposes. Now you can grab one of them in here. After downloading the binaries install it and make sure that you have the installer pack and not the source. Make sure that you add another user for yourself to be used in our testing.
Here, I’ll write the code in VB since its common to everybody. You might want the C# sample that is included for download as well as the VB sample.
Now, let’s jump to the point. Let’s fire-up our Microsoft Visual Web Developer Express or Visual Studio 2005 and start a new web project. In this case, I will refer you to the tutorial on how to start a new web project here and here.
After starting a new project, will have to open our web.config file and add our ConnectionString. In this case, under your <configuration></configuration> schema you can see the <connectionStrings/> tag in place. Replace it with the following:
<connectionStrings>
<add name="MySqlConnection" connectionString="server=localhost;database=testing;uid=dba;pwd=sql;pooling=false;"/>
</connectionStrings>
Databse property should be set with your database name as well as the user and password. Will have to leave the pooling option to false since we’re not using it.
Now, let’s add a folder App_Code which ASP.NET reserves as application folders. In your App_Code, add a class in it and rename it with DatabaseProvider.vb and DatabaseProvider.cs for C# project.
Here’s the directory structure of the tutorial looks like.

Open the class to begin with the coding. And write the following code as follow:
Imports System.Configuration
Imports MySql.Data.MySqlClient
Public Class DatabaseProvider
Public objConnection As MySqlConnection
Function connect_db() As Boolean
Try
objConnection = New MySqlConnection(ConfigurationManager.ConnectionStrings("MySqlConnection").ConnectionString)
objConnection.Open()
Return True
Catch ex As Exception
Return False
End Try
End Function
Function close_db() As Boolean
Try
If objConnection.State = Data.ConnectionState.Open Then
objConnection.Close()
End If
Return True
Catch ex As Exception
Return False
End Try
End Function
End Class
same as usual we import System.Configuration to be able to use the Connectionstrings property. We also imported MySql.Data.MySqlClient namespace from our third-party class from MySQL. So why do we need to put this code inside a class? Good question. So that we can easily access the methods in all our asp.net applications. We can then load a new instance of the class and the expose it in our pages. So how can we do it? Let’s go to our Default.aspx code-behind. I’m not going to explain every line above since I’ve noted above when you first read this tutorial.
Our code-behind should look like this:
Imports MySql.Data.MySqlClient
Partial Class _Default
Inherits System.Web.UI.Page
Dim db As New DatabaseProvider
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If db.connect_db() Then
Response.Write("Now we're connected!")
Else
Response.Write("No we're not!")
End If
End Sub
End Class
Above, we declared db as a new instance of DatabaseProvider class in our DatabaseProvider.vb and expose the methods in it. Now try to run our application and see what happens.
We’re done! Hope you like it. It’s really basic and no need to explain a lot of things. But if you have questions, you may post a comment! Thanks!
Tutor05142008_VB.zip (115.13 kb)
Tutor05142008_CSharp.zip (115.19 kb)