急求求高手解答、指点.............

问题描述

-----创建的一个公共类usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSystem.Data.SqlClient;usingSystem.Data;namespaceStudentInfo.方法及类{publicclassCommon{SqlConnectioncon=newSqlConnection();SqlCommandcom=newSqlCommand();privatevoidopcon(){con.ConnectionString="server=(local);database=StudentInfo;integratedsecurity=true";con.Open();}publicvoidopencommand(stringcommtext,CommandTypecommtype,SqlParameter[]para){opcon();com.Connection=con;com.CommandText=commtext;com.CommandType=commtype;if(para!=null){for(inti=0;i<para.Length;i++){com.Parameters.Add(para[i]);}}}publicDataSetfillData(stringcommtext,CommandTypecommtype,SqlParameter[]para){opencommand(commtext,commtype,para);SqlDataAdapterda=newSqlDataAdapter(com);DataSetds=newDataSet();da.Fill(ds);closecon();returnds;}publicintexecuteNuery(stringcommtext,CommandTypecommtype,SqlParameter[]para){opencommand(commtext,commtype,para);inti=com.ExecuteNonQuery();closecon();returni;}privatevoidclosecon(){con.Close();}}}---创建的一个添加和查询方法usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSystem.Data.SqlClient;usingSystem.Data;usingSystem.Collections;namespaceStudentInfo.方法及类{publicclassFunc{CommonCN=newCommon();publicDataSetLook(){DataSetds=CN.fillData("Look",CommandType.StoredProcedure,null);returnds;}publicintAddvalues(stringN,stringS,stringB){SqlParameter[]para=newSqlParameter[3];para[0]=newSqlParameter("@Stu_name",SqlDbType.NVarChar,20,"Stu_name");para[0].Value=N;para[1]=newSqlParameter("@Stu_sex",SqlDbType.NVarChar,2,"Stu_sex");para[1].Value=S;para[2]=newSqlParameter("@Stu_birth",SqlDbType.DateTime,100,"Stu_birth");para[2].Value=DateTime.Parse(B);inti=CN.executeNuery("addStudent",CommandType.StoredProcedure,para);returni;}}}为什么调用Addvalues出现下列的错:过程Look没有参数,但却为该过程提供了参数。我的储存过程是这样的:USE[StudentInfo]GO/******Object:StoredProcedure[dbo].[Look]ScriptDate:11/23/201110:37:53******/SETANSI_NULLSONGOSETQUOTED_IDENTIFIERONGOALTERproc[dbo].[Look]asselect*fromStudentInfo我很奇怪我没有带参数确报错说提供参数?

解决方案

解决方案二:
哪个地方调用Addvalues方法了?Addvalues方法里面调用addStudent存储过程时的确写了三个参数而存储过程中没有参数啊,这样肯定出错,
解决方案三:
inti=CN.executeNuery("addStudent",CommandType.StoredProcedure,para);你没参数传什么对象啊para?????????????????????????????para变成null
解决方案四:
晕,看串了
解决方案五:
调用AddvaluesAddvalues里边传参了
解决方案六:
嗯,应该是楼主看错啦
解决方案七:
调试,是解决问题的最好方法...

时间: 2024-09-21 15:54:36

急求求高手解答、指点.............的相关文章

C# mapx 始终无法将图元添加至新建图层中,急求高手解答!!!

问题描述 代码如下:MapXLib.Fieldsflds=newMapXLib.FieldsClass;MapXLib.Layerlyr=axMap1.Layers._Item(1);MapXLib.Datasetdts,dts_red=null;MapXLib.Featuresftrs,ftrs_clone;MapXLib.Featureftr;flds.Add("ID","ID",MapXLib.AggregationFunctionConstants.miAg

急求高手解答?

问题描述 /////编译的方法publicintaddnputgod3(stringD,stringN,stringP){SqlParameter[]paras=newSqlParameter[3];paras[0]=newSqlParameter("@GoodsID",SqlDbType.Int);paras[0].Value=int.Parse(D);paras[1]=newSqlParameter("@GoodsName",SqlDbType.NVarChar

java-关于从SVN中检出maven项目,求高手解答,急

问题描述 关于从SVN中检出maven项目,求高手解答,急 求问,我在提交maven项目到SVN服务器时,我只提交了src下面的和webRoot下面的东西,那么其他人要怎么才能用eclipse的SVN插件把项目检出来并成为一个maven项目呢 解决方案 http://bbs.csdn.net/topics/390319216 解决方案二: 从svn上检出的项目,如何转化为maven项目----------------------

求助.我拿到一个用VB.net 语言 Vs2005 和Access工具 编写的程序 可我不会运行 急求高手指点

问题描述 求助.我拿到一个用VB.net语言Vs2005和Access工具编写的程序可我不会运行急求高手指点请对这方面的有研究的高手联系QQ873498013我把程序发给你,只要告诉我如何配置运行的即可.Q币相赠大伙帮帮忙啊真得很急! 解决方案 解决方案二:安装.netFrameWork2.0解决方案三:安装2005就可以调试了解决方案四:我已经加你了

springmvc-求高手解答,hessian搭建的客户端抛出异常信息,如下!求教,急`~

问题描述 求高手解答,hessian搭建的客户端抛出异常信息,如下!求教,急`~ 严重: Servlet.service() for servlet spring threw exception com.caucho.hessian.io.HessianProtocolException: ' ' is an unknown code at com.caucho.hessian.client.HessianProxy.invoke(HessianProxy.java:219) at com.su

(急问)socket不断重连,会导致程序退出,请高手解答原因

问题描述 和服务器是用sokect/TCP建立的连接,断开后,就去有重新连接,但是当重连的次数达到很多时,会导致程序退出,请高手解答这是什么原因?有什么解决办法?多谢多谢! 解决方案 解决方案二:关注ing解决方案三:贴源码看看啊...解决方案四:"重连的次数达到很多时,会导致程序退出,"这个是可以自己控制的吧解决方案五:"重连的次数达到很多时,会导致程序退出,",应该是服务端没有释放socket连接的资源解决方案六:可能连接不是静态的可能发送或接收之前没有判断那个

gdal-GDAL读取tif数值出现问题?急求大神指点!!!!!

问题描述 GDAL读取tif数值出现问题?急求大神指点!!!!! 5C 文件是用arcgis软件分类后存储的tif文件,分了20个类,灰度值应该是1-20之间的整数值,在arcgis软件中显示是这样的正常值,但是用VS2010+GDAL中读取时会出现灰度值不是这个,总是32768或0啊什么的值.我程序读取网上下载的原始geotiff的高程数据是完全没问题的,分类后的数据怎么就读不出来了呢?我写了个大致代码如下,望大神给我分析一下,第一天注册CSDN,谢谢! #include ""std

刚开始学习spring 有一点小问题 希望能得到高手解答

问题描述 刚开始学习spring 有一点小问题 希望能得到高手解答 ?下面这几段代码中有一个地方不是很理解,希望能得到指点 UserServiceTest.java @Test public void testAdd() throws Exception { ApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); UserService service = (UserService)ctx.ge

class-jsp做一个类似于视频评论下的回复功能的获得数据显示,对前端不是很熟悉,求高手解答

问题描述 jsp做一个类似于视频评论下的回复功能的获得数据显示,对前端不是很熟悉,求高手解答 20C CREATE TABLE videocomment (id int(10) NOT NULL AUTO_INCREMENT/**ID**/createTime timestamp NULL DEFAULT CURRENT_TIMESTAMP/**创建时间**/userId int(10) NOT NULL/**用户ID**/videoId int(10) NOT NULL/**视频ID**/re