摘要: SqlServer中更新时间主要使用DATEADD()这个函数具体使用方法如下:DATEADD(datepart,number,date)date 参数是合法的日期表达式。number 是您希望添加的间隔数;对于未来的时间,此数是正数,对于过去的时间,此数是负数。datepart指定更新的是年、月、日或者其他的时、分、秒等,对应的参数如下:年:YYYY YEAR月:MM MONTH日:D DD DAY时:HH HOUR分:MINUTE MI秒:S SECOND SS具体的请参考:http://www.w3school.com.cn/sql/func_dateadd.asp 阅读全文
posted @ 2012-07-27 15:45 +-/\-+ 阅读(4524) 评论(0) 推荐(0) 编辑
摘要: 1、创建事务的结构SqlConnection sqlConnection = new SqlConnection(); ...初始化连接 // 开启事务 SqlTransaction sqlTransaction = sqlConnection.BeginTransaction(); // 将事务应用于Command SqlCommand sqlCommand = new SqlCommand(); sqlCommand.Connection = sqlConnection; s... 阅读全文
posted @ 2012-07-27 15:36 +-/\-+ 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 关键代码:设置窗体的FormBorderStyle为None,和TransparencyKey为Fuchsia(为图片背景色)必须和图片背景色一样。是代码: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;namespace WindowsFormsApplication1{ public ... 阅读全文
posted @ 2012-07-16 17:31 +-/\-+ 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 今天由于工作需要,了解了下sql的多键组合唯一,打个比方Id1 Id21 2 可以13 可以2 2 可以1 2 不行因为和第一条的组合重复方法一、在sqlserver中选中需要进行组合判断的列然后右键 索引/键→添加→在索引/键面板的右边的编辑区的列中选择需要判断的列,然后把列下面的是唯一的选为是就可以了。方法二、alter table 表名 drop 索引名create unique nonclustered index [索引名称] on TTT (列一 asc,列二 asc ) go如果大家有更好的方法欢迎补充 阅读全文
posted @ 2012-07-03 16:32 +-/\-+ 阅读(3392) 评论(0) 推荐(0) 编辑
摘要: ///1.判断远程文件是否存在 ///fileUrl:远程文件路径,包括IP地址以及详细的路径 private bool RemoteFileExists(string fileUrl) { bool result = false;//下载结果 WebResponse response = null; try { WebRequest req = WebRequest.Create(fileUrl); response... 阅读全文
posted @ 2012-06-15 09:47 +-/\-+ 阅读(4387) 评论(0) 推荐(0) 编辑
摘要: 因为工作需要研究了一下 js的ajax,下面是成果。主要是三部分:一、js部分 友情提示注意js部分中的 $("#btn_login")中的return false;这个可以阻止回转服务器不然还是会刷新$(document).ready(function () { $("#btn_login").click(function () { postlogin(); return false; });});function postlogin() { if (checkUserName() && checkUserPwd()) { var .. 阅读全文
posted @ 2012-05-18 14:13 +-/\-+ 阅读(2929) 评论(5) 推荐(1) 编辑
摘要: 来博客园第一天博客园博客刚刚开通,以后会好好维护 阅读全文
posted @ 2012-04-27 16:55 +-/\-+ 阅读(96) 评论(0) 推荐(0) 编辑