Heim >Datenbank >MySQL-Tutorial >access自动编号,标准表达式中数据类型不匹配

access自动编号,标准表达式中数据类型不匹配

WBOY
WBOYOriginal
2016-06-07 15:39:022014Durchsuche

自己想做一个在文本框输入留言的 编号 (ID),来查询留言内容的功能, 但access中 自动 编号 的 标准 表达式 中 数据 类型 不 匹配 所拦住,经过分析,查看资料,自己找到了一个解决方法,在这里 分享一下 文本框的名字为txtyhid //将如果写成 //String sql =

自己想做一个在文本框输入留言的编号(ID),来查询留言内容的功能,

但access中自动编号标准表达式数据类型匹配所拦住,经过分析,查看资料,自己找到了一个解决方法,在这里分享一下

文本框的名字为txtyhid


//将如果写成

//String sql = "select * from yhly where lyr=" + txtyhcx.Text+"'";

//或者进行整形转换String sql = "select * from yhly where lyr=" +int.Parse( txtyhcx.Text)+"'";

//或者进行长整形转换


本人的解决方案,将自动编号的SQL语句分解开

String sql = "select * from yhly where ID=";

         String sql1 = sql + txtyhid.Text;



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn