摘要: 1.查询所有触发器SELECT * FROM Sysobjects WHERE xtype = 'TR'2.删除触发器drop trigger record_delete, record_insert(触发器名)3.sql语句获取当前系统日期使用sqlserver日期函数中的getdate()可以获 阅读全文
posted @ 2016-06-03 15:16 蓝瑟黄昏 阅读(1573) 评论(0) 推荐(0) 编辑
摘要: this.reportViewer1.ProcessingMode = Microsoft.Reporting.WinForms.ProcessingMode.Local;//reportViewer1是你报表控件的namethis.reportViewer1.LocalReport.ReportP 阅读全文
posted @ 2016-06-03 15:11 蓝瑟黄昏 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 方法一:实现双击 ComboBox 事件2012-04-13 10:52 ComboBox 有双击事件,但是我们也知道永远也不会触发。至于为什么,问微软吧。 但是我们需要触发双击事件的时候怎么办呢? ComboBox 还有一个单击事件。那么我们就利用这个单击事件来达到双击事件的效果吧。 原理: 1. 阅读全文
posted @ 2016-06-03 15:05 蓝瑟黄昏 阅读(1349) 评论(0) 推荐(1) 编辑
摘要: 一、SQL Server服务在开始-运行中输入cmd 通过net stop mssqlserver 关闭数据库服务net start mssqlserver 开启net pause mssqlserver暂停net continuemssqlserver 继续二、数据类型sql server2008... 阅读全文
posted @ 2015-07-02 15:54 蓝瑟黄昏 阅读(549) 评论(0) 推荐(0) 编辑
摘要: 数组:解决同一类大量数据在内存存储和运算的功能 分类:一维数组、二维数组、三维数组 特点:连续,同一类数据 一维数组:定义:指定类型,指定长度,指定名称 int[] a=new int[5]; 创建一个int类型的数组,长度是5,从1开始 new是动词int[] a=new int[5]{90,9... 阅读全文
posted @ 2015-06-19 15:46 蓝瑟黄昏 阅读(100) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication19 { class Program { static void Main(string[] args) { ... 阅读全文
posted @ 2015-06-19 14:30 蓝瑟黄昏 阅读(140) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 函数 { class Program { /// /// 判断质数 /// ... 阅读全文
posted @ 2015-06-19 10:11 蓝瑟黄昏 阅读(148) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 结构体 { class Program { struct t... 阅读全文
posted @ 2015-06-19 10:08 蓝瑟黄昏 阅读(228) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication1{ class... 阅读全文
posted @ 2015-06-19 10:03 蓝瑟黄昏 阅读(103) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 数组 { class Class1 { static void main (string[] args) ... 阅读全文
posted @ 2015-06-19 08:57 蓝瑟黄昏 阅读(428) 评论(0) 推荐(0) 编辑