上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页
摘要: 行组列祖最右边箭头->高级模式->行组静态->keepwithgroup=after ,reportonnewpage=true 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(167) 评论(0) 推荐(0)
摘要: #region 定义类型 /// /// 图书分类信息 /// public class Category { /// /// 分别ID /// public int catID { get; set; } /// /// 分类名 /// public string ca... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(287) 评论(0) 推荐(0)
摘要: Create Procedure sp_LookForColumn ( @DBName VarChar(100) , @ColumnName VarChar(100) ) As Declare @SQL VarChar(8000) Select @SQL = ' Select A.N... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(89) 评论(0) 推荐(0)
摘要: 明明数据更新了,但是ExecuteNonQuery返回-1 。是存储过程有这样一句,去掉就可以了。 SET NOCOUNT ON; 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(141) 评论(0) 推荐(0)
摘要: Debug.WriteLine输出调试信息 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(549) 评论(0) 推荐(0)
摘要: 如果安装好的windows服务无法启动或者启动后停止.可以看下 管理工具->计算机管理->事件查看器 安装命令 C:\Windows\Microsoft.NET\Framework\v4.0.30319>InstallUtil.exe D:\workspace\mc\Me nuMan... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(95) 评论(0) 推荐(0)
摘要: 数组是引用类型 class ParameterTest { static void SomeFunction(int[] ints, int i) { ints[0] = 100; i = 100; } public static int Main() { int i = 0; in... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(67) 评论(0) 推荐(0)
摘要: // 示例数据 Student[] students = { new Student { StuID = 1, StuName = "小陈", Course = "C++基础" }, new Student { StuID = 2, StuName = "小林", Course = ... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(142) 评论(0) 推荐(0)
摘要: ALTER PROCEDURE [dbo].[RebuildIndex] AS DECLARE @DBName NVARCHAR(255) ,@TableName NVARCHAR(255) ,@SchemaName NVARCHAR(255) , @IndexName NVARCH... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(175) 评论(0) 推荐(0)
摘要: 把@ @identity 改为scope_indentity() 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(109) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页