摘要: 今天碰到一个奇怪的问题,具体见csdn:http://topic.csdn.net/u/20120424/19/0aeacbce-a9d5-4630-8b87-a08d5df1828b.html?seed=1347097422&r=78358698#r_78358698解决方法与原因:猜测,因为数据库是我再vs2010中建立的,数据库版本为sql2005,在ssms中查看不到vs中的数据库的,所有【手贱】附加了一下。之后就发现如上问题,insert语句和存储过程无效果,但返回值成功。且我的update delete select语句能成功执行,并且正常取值。折腾2个多小时找不到问题所在 阅读全文
posted @ 2012-04-25 03:11 易水寒2012 阅读(430) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Data.Sql;using System.Text;namespace AllSqlServer{ class Program { static void Main(string[] args) { //SQLDMO.NameList names; //SQLDMO.ApplicationClass ac = new SQLDMO.ApplicationClass(); //names = ac.ListAvailableSQLServ... 阅读全文
posted @ 2012-04-24 14:05 易水寒2012 阅读(1590) 评论(0) 推荐(1) 编辑
摘要: /// <summary> /// 获取sqlserverName(计算机名)上所有的数据库名称 /// </summary> /// <param name="sqlserverName"></param> /// <returns></returns> public static List<string> getAllDataBase(string sqlserverName) { List<string> listdatabase = new List<string& 阅读全文
posted @ 2012-04-24 14:04 易水寒2012 阅读(425) 评论(0) 推荐(0) 编辑
摘要: 让自己尽快牛起来!! 阅读全文
posted @ 2012-04-19 20:48 易水寒2012 阅读(111) 评论(0) 推荐(0) 编辑
摘要: C#回调函数应用示例,形象比喻方法助理解,整理了一个简单的例子来说明回调函数的用法:namespace CallBackFunction{class Program{static void Main(string[] args){Program prog = new Program();//在静态函数Main中调用非静态方法时,必须先实例化该类对象,方可调用GetSum方法SumClass sc = new SumClass();//实例化SumClass类int result=sc.SumAll(prog.GetSum);Console.WriteLine(result.ToString() 阅读全文
posted @ 2012-04-18 10:43 易水寒2012 阅读(550) 评论(1) 推荐(0) 编辑