上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 47 下一页

MSSQL - 逻辑主键、业务主键和复合主键

摘要: 转载自:http://blog.csdn.net/sunrise918/article/details/5575054这几天对逻辑主键、业务主键和复合主键进行了一些思考,也在网上搜索了一下相关的讨论,相关讨论可以看最下面的参考链接。下面是自己基于 SQL Server 做的一些总结,其他数据库(Or... 阅读全文
posted @ 2015-06-29 13:42 ultrastrong 阅读(861) 评论(0) 推荐(0)

C#、WinForm、ASP.NET - Md5散列加密

摘要: MD5值概念解释:转载自:http://free0007.iteye.com/blog/2047163所 谓MD5,即"Message-Digest Algorithm 5(信息-摘要算法)",它由MD2、MD3、MD4发展而来的一种单向函数算法(也就是HASH算法),它是国际著名的公钥加密算法标准... 阅读全文
posted @ 2015-06-28 19:27 ultrastrong 阅读(406) 评论(0) 推荐(0)

C#、WinForm、ASP.NET - SQLHelper.cs

摘要: SQLHelper.csusing System;using System.Data;using System.Configuration;using System.Data.SqlClient;namespace DAL{ public class SQLHelper { ... 阅读全文
posted @ 2015-06-28 13:52 ultrastrong 阅读(437) 评论(0) 推荐(0)

Winform - 判断GroupBox控件中的TextBox文本框是不是为空

摘要: foreach (Control item in this.groupBox2.Controls) { if (item is TextBox) { if (item.Text.T... 阅读全文
posted @ 2015-06-25 12:50 ultrastrong 阅读(387) 评论(0) 推荐(0)

MSSQL、C# 、Winform、ASP.NET - 数据库备份与还原模块

摘要: 数据库备份还原类:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;//应用相应的命名空间using System.Window... 阅读全文
posted @ 2015-06-24 11:35 ultrastrong 阅读(419) 评论(0) 推荐(0)

MSSQL - 根据时间倒序删除第一行数据

摘要: delete top(1) from Tb_PaintOut where PaintNumber = (select top (1) PaintNumber from Tb_PaintOut order by PaintOutTime desc)Tb_PaintOut:表明PaintNumber:... 阅读全文
posted @ 2015-06-23 13:47 ultrastrong 阅读(873) 评论(0) 推荐(0)

C# - 推荐10本C#编程的最佳书籍

摘要: http://www.cnblogs.com/gc2013/p/4576345.html 阅读全文
posted @ 2015-06-22 12:19 ultrastrong 阅读(1437) 评论(0) 推荐(0)

C# - 数据库存取图片

摘要: 1、创建数据表CREATE TABLE Tb_pic( ID int primary key identity(1, 1) not null, PictureBox varchar(max) )运行效果:2、代码:using System;using System.Collections.Gener... 阅读全文
posted @ 2015-06-22 11:31 ultrastrong 阅读(341) 评论(0) 推荐(0)

C# / MSSQL / WinForm / ASP.NET - SQLHelper中返回SqlDataReader数据

摘要: /// /// Execute a SqlCommand that returns a resultset against the database specified in the connection string /// using the pr... 阅读全文
posted @ 2015-06-13 11:41 ultrastrong 阅读(432) 评论(0) 推荐(0)

MSSQL - sql server 2008安装时服务器配置,SQL server服务指定的凭证无效

摘要: http://zhidao.baidu.com/link?url=UsDpXyHq7FpuHrhKPq1saw0LaM0U4IyMXJKaSmxBJ1WeuDPm5ElLZ0Xw2-bXo1sYHHLJ_z_tPyLSua40zzF_oK 阅读全文
posted @ 2015-06-11 18:09 ultrastrong 阅读(330) 评论(0) 推荐(0)
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 47 下一页