当前位置: 技术问答>java相关
简单的小程序?送20分!
来源: 互联网 发布时间:2017-03-30
本文导语: 我的这段代码有什么问题?运行后说,列名无效,假如我的JTEXTFIELD1中输入"hongloumeng",他就 会说列名"hongloumeng"无效。我的程序是这样的: String jText3=jTextField3.getText(); database1.setConnection(new com.borland.dx.sql.dataset.Con...
我的这段代码有什么问题?运行后说,列名无效,假如我的JTEXTFIELD1中输入"hongloumeng",他就 会说列名"hongloumeng"无效。我的程序是这样的:
String jText3=jTextField3.getText();
database1.setConnection(new com.borland.dx.sql.dataset.ConnectionDescriptor("jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=中小学学生查询工具", "sa", "", false, "com.microsoft.jdbc.sqlserver.SQLServerDriver"));
queryDataSet1.setQuery(new com.borland.dx.sql.dataset.QueryDescriptor(database1, "select * from chinese where name="+jText3, null, true,
~~~~~~~~~~问题肯在这里
Load.ALL));
jdbTable1.setDataSet(queryDataSet1);
String jText3=jTextField3.getText();
database1.setConnection(new com.borland.dx.sql.dataset.ConnectionDescriptor("jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=中小学学生查询工具", "sa", "", false, "com.microsoft.jdbc.sqlserver.SQLServerDriver"));
queryDataSet1.setQuery(new com.borland.dx.sql.dataset.QueryDescriptor(database1, "select * from chinese where name="+jText3, null, true,
~~~~~~~~~~问题肯在这里
Load.ALL));
jdbTable1.setDataSet(queryDataSet1);
|
queryDataSet1.setQuery(new com.borland.dx.sql.dataset.QueryDescriptor(database1, "select * from chinese where name="+jText3, null, true,Load.ALL));
-->
queryDataSet1.setQuery(new com.borland.dx.sql.dataset.QueryDescriptor(database1, "select * from [chinese] where [name]='"+jText3+"'", null, true,Load.ALL));
-->
queryDataSet1.setQuery(new com.borland.dx.sql.dataset.QueryDescriptor(database1, "select * from [chinese] where [name]='"+jText3+"'", null, true,Load.ALL));
|
"select * from chinese where name = '"+jText3+"'"
加个引号!!
加个引号!!
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。