首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
数据库
> 详细
数据库操作之简单带参操作
时间:
2016-06-04 11:48:46
阅读:
279
评论:
0
收藏:
0
[点我收藏+]
标签:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.IO;
namespace xmlTojson
{
public partial class DBForm : Form
{
public DBForm()
{
InitializeComponent();
}
#region 数据库操作
//查询
//SELECT [DLLID],[DLLCONTENT],[DLLVERTION],[DLLBACKUPS] FROM [TestDB].[dbo].[My_Table]
//更新
//go
//UPDATE [TestDB].[dbo].[My_Table] SET [DLLBACKUPS]=[DLLCONTENT],[DLLCONTENT]=‘789‘ WHERE [DLLID]=‘20160602‘
//插入
//go
//INSERT INTO [TestDB].[dbo].[My_Table] VALUES(‘20180602‘,‘qqq‘,‘222‘,‘444‘)
//删除
//go
//DELETE FROM [TestDB].[dbo].[My_Table] WHERE [DLLID]=‘20170602‘
#endregion
private void btnSave_Click(object sender, EventArgs e)
{
byte[] byteBinary = File.ReadAllBytes(@"E:\Programme\MyWork\WLJTools\xmlTojson\xmlTojson\Lib\3w.dll");
//string saveString = Encoding.UTF8.GetString(byteBinary);
#region DataBase UPdate
//"Data Source=LocalHost;Integrated Security=SSPI;Initial Catalog=Northwind;");
string connectstring = "Data Source=PC-20151213LNGQ;Integrated Security=True;Initial Catalog=TestDB";
string sqlCommandText = "UPDATE My_Table SET [DLLBACKUPS]=[DLLCONTENT],[DLLCONTENT]=" +
"@DLLCONTENT"
+ " WHERE [DLLID]=‘100310125‘";
SqlConnection sqlConn = new SqlConnection(connectstring);
sqlConn.Open();
SqlCommand sqlCommand = sqlConn.CreateCommand();
SqlTransaction transact = sqlConn.BeginTransaction();
//创建参数
SqlParameter para = new SqlParameter(
"@DLLCONTENT"
, SqlDbType.VarBinary, byteBinary.Length, ParameterDirection.Input, true, 0, 0, "DLLCONTENT", DataRowVersion.Default, byteBinary);
sqlCommand.Parameters.Add(para);
//sqlCommand.Parameters["@DLLCONTENT"] = byteBinary;
//sqlCommand.Parameters.Add(
sqlCommand.Connection = sqlConn;
sqlCommand.CommandText = sqlCommandText;
sqlCommand.Transaction = transact;
try
{
int xx = (int)sqlCommand.ExecuteNonQuery();
if (xx > 0)
{
MessageBox.Show("Commit Sucess!", "提示信息:");
}
//return;
//SqlDataReader reader = sqlCommand.ExecuteReader(CommandBehavior.CloseConnection);
//if (reader.Read())
//{
// byte[] result = (byte[])reader.GetValue(1);
//}
transact.Commit();
MessageBox.Show("Commit Sucess!", "提示信息:");
}
catch (Exception ex)
{
MessageBox.Show("Commit Exception Type: {0}" + ex.GetType(), "提示信息:");
try
{
transact.Rollback();
}
catch (Exception ex2)
{
MessageBox.Show("Rollback Exception Type: {0}" + ex2.GetType(), "提示信息:");
}
}
#endregion
}
private void btnRead_Click(object sender, EventArgs e)
{
//"Data Source=LocalHost;Integrated Security=SSPI;Initial Catalog=Northwind;");
string connectstring = "Data Source=LocalHost;Integrated Security=SSPI;Initial Catalog=TestDB";
string sqlCommandText = "SELECT [DLLID],[DLLCONTENT],[DLLVERTION],[DLLBACKUPS] FROM [TestDB].[dbo].[My_Table] WHERE [DLLID]=‘100310125‘";
SqlConnection sqlConn = new SqlConnection(connectstring);
sqlConn.Open();
SqlCommand sqlCommand = sqlConn.CreateCommand();
SqlTransaction transact = sqlConn.BeginTransaction();
sqlCommand.CommandText = sqlCommandText;
sqlCommand.Transaction = transact;
try
{
SqlDataReader reader = sqlCommand.ExecuteReader(CommandBehavior.CloseConnection);
if (reader.Read())
{
byte[] result = (byte[])reader.GetValue(1);
File.WriteAllBytes(@"E:\Programme\MyWork\WLJTools\xmlTojson\xmlTojson\Lib\www.dll", result);
}
reader.Close();
MessageBox.Show("Commit Sucess!", "提示信息:");
}
catch (Exception ex)
{
MessageBox.Show("Commit Exception Type: {0}" + ex.GetType(), "提示信息:");
}
}
}
}
数据库操作之简单带参操作
标签:
原文地址:http://www.cnblogs.com/1175429393wljblog/p/5558302.html
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
数据库进阶
2021-07-29
在 Oracle 数据库中执行 SQL 语句遇到特殊字符的转义方式
2021-07-28
Windows Logstash同步 Sqlserver 到Elasticsearch
2021-07-26
mysql数据库(11):恢复数据
2021-07-26
mysql数据库(9):常用查询的例子
2021-07-26
SQLAlchemy 多对多
2021-07-26
ClickHouse的JDBC连接
2021-07-26
Apache HBase 1.7.1 发布,分布式数据库
2021-07-26
数据库常用架构和同步工作原理
2021-07-26
MySQL数据库设计规范(仅供参考)
2021-07-26
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!