当前位置: 技术问答>java相关
怎样在JAVA中加入SQL????????????
来源: 互联网 发布时间:2017-03-23
本文导语: 我想用SQL查询在JTxetField中输入的数字,输入为intput,在frame.java中 我是这样写的 int find = frame.intput; String query = "SELECT score FROM score WHERE number=this.find"; 不知道这么些对不对 尤其是WHERE number=this.find 应该怎样在SQL...
我想用SQL查询在JTxetField中输入的数字,输入为intput,在frame.java中
我是这样写的
int find = frame.intput;
String query = "SELECT score FROM score WHERE number=this.find";
不知道这么些对不对
尤其是WHERE number=this.find
应该怎样在SQL语言中镶入JAVA变量呢???
我是这样写的
int find = frame.intput;
String query = "SELECT score FROM score WHERE number=this.find";
不知道这么些对不对
尤其是WHERE number=this.find
应该怎样在SQL语言中镶入JAVA变量呢???
|
String query = "SELECT score FROM score WHERE number=" + find;
|
String query = "SELECT score FROM score WHERE number="+this.find;
|
JTextField jtfInput;
...
String query="Select score from score where number="+jtfInput.getText();
...
String query="Select score from score where number="+jtfInput.getText();