基础 ADO.NET 访问MYSQL 与 MSSQL 数据库例子
虽然实际开发时都是用 Entity 了,但是基础还是要掌握和复习的 ^^
//set connection string, server,database,username,password
MySqlConnection con = new MySqlConnection("SERVER=localhost;DATABASE=Gridview;UID=keatkeat;PASSWORD=001001");
MySqlTransaction transaction = null;
MySqlDataReader reader = null;
try
{
MySqlCommand command = new MySqlCommand();
command.Connection = con;
command.CommandType = CommandType.Text;
con.Open();
transaction = con.BeginTransaction(); command.CommandText = "select * from task_record where id=?para0";
//add and remove parameters
command.Parameters.Clear();
command.Parameters.AddWithValue("?para0", ); //for protect sql inject attack //for insert update
//int result = command.ExecuteNonQuery();
//long lastInsertId = command.LastInsertedId;
transaction.Commit(); //for select then use Adapter
MySqlDataAdapter adapter = new MySqlDataAdapter(command);
DataTable table = new DataTable();
adapter.Fill(table); //装入table之后就可以调用了
for (int i = , l = table.Rows.Count; i < l; i++)
{
for (int a = , b = table.Columns.Count; a < b; a++)
{
string columnName = table.Columns[a].ColumnName;
}
string someData = table.Rows[i]["columnName"].ToString();
} //select then use reader
reader = command.ExecuteReader();
int colummCount = reader.FieldCount;
int rowIndex = ;
while (reader.Read()) //reader 内的数据只能被read 一次哦
{
for (int i = ; i < colummCount; i++)
{
string columnName = reader.GetName(i);
object value = reader[i];
}
rowIndex++;
}
reader.Close(); }
catch (Exception ex)
{
if (transaction != null) transaction.Rollback();
string x = ex.Message;
}
finally
{
if (con.State == System.Data.ConnectionState.Open)
{
con.Close();
}
}
上面给的是一个 MYSQL 的例子。
这里我要说说 SQL SERVER (MSSQL) 的区别。
1. Class不同, 上面的全部 "MySql" 改成 Sql 就可以了
2. CommandType 的namespace 不同, MSSQL 是在 System.Data
3. cosmmand 的 para 符号不同
"select * from task_record where id=?para0" <- MySql 用的是问号 "?"
"select * from task_record where id=@para0" <- SQL SERVER 用的是 "@"
4. command.Transaction = transaction <-- MSSQL 必须加多一句,每个command 必须要填写 transaction , 如果你有开的话
5.
command.CommandText = "insert into product (code,name) output inserted.id values ('mk400','puma')";
int result = (int)command.ExecuteScalar();
如果要获得last inserted id , 是通过 command output. (我不清楚这算不算SQL规范语句)
基础 ADO.NET 访问MYSQL 与 MSSQL 数据库例子的更多相关文章
- [Spark][Python]Spark 访问 mysql , 生成 dataframe 的例子:
[Spark][Python]Spark 访问 mysql , 生成 dataframe 的例子: mydf001=sqlContext.read.format("jdbc").o ...
- [JavaWeb基础] 003.JAVA访问Mysql数据库
上面两篇讲解了简单的JSP + Servlet的搭建和请求,那么后面我们肯定要用到数据交互,也就是操纵数据库的数据,包括对数字的增加,删除,修改,查询.我们就用简单的MySql来做例子 我们需要引入驱 ...
- SQL监控:mysql及mssql数据库SQL执行过程监控审计
转载 Seay_法师 最近生活有很大的一个变动,所以博客也搁置了很长一段时间没写,好像写博客已经成了习惯,搁置一段时间就有那么点危机感,心里总觉得不自在.所以从今天起还是要继续拾起墨笔(键盘),继续好 ...
- Database基础(一):构建MySQL服务器、 数据库基本管理 、MySQL 数据类型、表结构的调整
一.构建MySQL服务器 目标: 本案例要求熟悉MySQL官方安装包的使用,快速构建一台数据库服务器: 安装MySQL-server.MySQl-client软件包 修改数据库用户root的密码 确认 ...
- mysql和mssql数据库快速创建表格 五
* into testAAA FROM tbl_User --sqlserver方法一复制表结构 select * into testAAA FROM tbl_User --sqlserver复制表结 ...
- Oracle透明网关访问MySQL数据库
针对oracle数据库不同实例之间的数据访问,我们可以直接通过dblink访问,如果oracle数据库想访问mysql/sqlserver等数据库的数据,我们可以通过配置oracle透明网关实现异构数 ...
- 本地tomcat访问mysql数据库
虽然以前经常听人说起过tomcat,但是今天头一次使用tomcat. 1.Tomcat的安装过程: 首先应该从Apache官方网站上下载是用于Windows的.zip压缩包. 下面是相应的下载链接: ...
- C#访问MySQL数据库(winform+EF)
原文:C#访问MySQL数据库(winform+EF) 以前都是C#连接SQLServer,现在MySQL也比较火了,而且是开源跨平台的,这里连接使用一下,主要是体会一下整个流程,这里使用的是winf ...
- C#访问MySQL数据库的方法
C#访问MySQL数据库的方法 (1)首先需要下载C#访问MySQL数据库的ADO.NET驱动程序 下载地址为: http://dev.mysql.com/downloads/connector/ne ...
随机推荐
- linux之utime函数解析
[lingyun@localhost utime]$ ls hello utime.c world [lingyun@localhost utime]$ cat utime.c /******* ...
- MVC - 知识点
1. @Styles.Render("~/Content/css") 是怎么工作的? 在App_Start文件夹里面的BundleConfig.cs中定义了StyleBu ...
- Unity3D基础学习 NGUI Example 7-Scroll View(Panel)制作固定包裹栏,点击传递参数显示物体
最终效果如下: 实现ScrollView主要是NGUI的三个脚本"UIDraggable Panel","UIGrid","UIDrag Panel ...
- Understanding AMQP, the protocol used by RabbitMQ--reference
RabbitMQ is a lightweight, reliable, scalable and portable message broker. But unlike many message b ...
- How to configure Gzip for JBoss?---refer
Question: I think to try to speed up my Web App by reducing the size of transferred data. For exampl ...
- ajax_post方式
test_ajax_post.html <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" &quo ...
- Linux磁盘分区实战案例
一.查看新添加磁盘 [root@localhost /]# fdisk -l 磁盘 /dev/sda:53.7 GB, 53687091200 字节,104857600 个扇区 Units = ...
- 常用PC服务器LSI阵列卡配置
通常,我们使用的DELL/HP/IBM三家的机架式PC级服务器阵列卡是从LSI的卡OEM出来的,DELL和IBM两家的阵列卡原生程度较高,没有做太多封装,可以用原厂提供的阵列卡管理工具进行监控:而HP ...
- Asp.net中用户自定义控件 ascx的使用
使用ascx目的就是为了提高某部分功能的重复利用,我简单通过源代码说一下对它的参数的输入和数出. 我们以省市区三级连动为例子. vs2005下ascx页面的代码: <table width=&q ...
- hdu 1232
以前写的.....拿出来看看.... 并查集模板: #include <iostream> #include <string> using namespace std; int ...