<%@ Import Namespace="System.Data"%>
<%@ Import Namespace="MySql.Data.MySqlClient"%>
<%@ Page Language="C#" Debug="true" %>
<script runat="server">
void Page_Load(object sender, EventArgs e)
{
//Sample1();
Sample2();
}
void Sample1()
{
MySql.Data.MySqlClient.MySqlConnection objConn;
MySql.Data.MySqlClient.MySqlCommand objCmd;
String strConnString,strSQL;
strConnString = "Server=localhost;User Id=root; Password=root; Database=mydatabase; Pooling=false";
objConn = new MySql.Data.MySqlClient.MySqlConnection(strConnString);
objConn.Open();
strSQL = "INSERT INTO customer (CustomerID,Name,Email,CountryCode,Budget,Used) " +
"VALUES ('C005','Weerachai Nukitram','[email protected]','TH','2000000','1000000')";
objCmd = new MySql.Data.MySqlClient.MySqlCommand();
objCmd.Connection = objConn;
objCmd.CommandType = CommandType.Text;
objCmd.CommandText = strSQL;
objCmd.ExecuteNonQuery();
lblText.Text = lblText.Text + "- Record Inserted";
objCmd = null;
objConn.Close();
objConn = null;
}
void Sample2()
{
MySql.Data.MySqlClient.MySqlConnection objConn;
MySql.Data.MySqlClient.MySqlCommand objCmd;
String strConnString,strSQL;
strConnString = "Server=localhost;User Id=root; Password=root; Database=mydatabase; Pooling=false";
objConn = new MySql.Data.MySqlClient.MySqlConnection(strConnString);
objConn.Open();
strSQL = "INSERT INTO customer (CustomerID,Name,Email,CountryCode,Budget,Used) " +
"VALUES ('C005','Weerachai Nukitram','[email protected]','TH','2000000','1000000')";
objCmd = new MySql.Data.MySqlClient.MySqlCommand(strSQL,objConn);
try
{
objCmd.ExecuteNonQuery();
lblText.Text = lblText.Text + "- Record Inserted";
}
catch(Exception ex)
{
lblText.Text = lblText.Text + "<br> - Record not insert was (" + ex.Message + ")";
}
objCmd = null;
objConn.Close();
objConn = null;
}
</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - MySql.Data.MySqlClient</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Label id="lblText" runat="Server"></asp:Label>
</form>
</body>
</html>