当前位置: 技术问答>java相关
200分大奉送,急!
来源: 互联网 发布时间:2017-03-27
本文导语: 接http://expert.csdn.net/Expert/topic/1268/1268578.xml?temp=.5082361问题的研究! 这是我的一个搜索按钮的事件响应代码,但不能起作用,请高手指点! void jButton2_actionPerformed(ActionEvent e) { String jText2=jTextField2.getTe...
接http://expert.csdn.net/Expert/topic/1268/1268578.xml?temp=.5082361问题的研究!
这是我的一个搜索按钮的事件响应代码,但不能起作用,请高手指点!
void jButton2_actionPerformed(ActionEvent e) {
String jText2=jTextField2.getText();
jTextField2.setText("dsfa");
String query_1="select * from 语文 where 作品类型=jText2 union select * from 数学 where 作品类型=jText2 union select * from 英语 where 作品类型=jText2 union select * from 信息 where 作品类型=jText2";
main2Frame2 newjTable=new main2Frame2();
newjTable.queryDataSet1.close();
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, query_1, null, true, Load.ALL));
newjTable.jdbTable1.setDataSet(queryDataSet1);
}
详情请看http://expert.csdn.net/Expert/topic/1268/1268578.xml?temp=.5082361
谁能帮我把问题解决了,我送上200分给他!
这是我的一个搜索按钮的事件响应代码,但不能起作用,请高手指点!
void jButton2_actionPerformed(ActionEvent e) {
String jText2=jTextField2.getText();
jTextField2.setText("dsfa");
String query_1="select * from 语文 where 作品类型=jText2 union select * from 数学 where 作品类型=jText2 union select * from 英语 where 作品类型=jText2 union select * from 信息 where 作品类型=jText2";
main2Frame2 newjTable=new main2Frame2();
newjTable.queryDataSet1.close();
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, query_1, null, true, Load.ALL));
newjTable.jdbTable1.setDataSet(queryDataSet1);
}
详情请看http://expert.csdn.net/Expert/topic/1268/1268578.xml?temp=.5082361
谁能帮我把问题解决了,我送上200分给他!
|
package com.applet.cat10;
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
import javax.swing.*;
import com.util.*;
import java.util.*;
import javax.swing.table.*;
import java.sql.*;
/**
* Title: Cat工程
* Description: BCat
* Copyright: Copyright (c) 2001
* Company: smartcomm
* @author daniel
* @version 1.0
*/
public class TestDatabase extends JApplet {
boolean isStandalone = false;
JButton jButton1 = new JButton();
Database db=new Database();
JTable table1 = new JTable();
JScrollPane scroll = new JScrollPane();
JTextField text1 = new JTextField();
DefaultTableModel dtm;
Vector vCdata=null;
ResultSet rsRow=null; /
/**Construct the applet*/
public TestDatabase() {
}
/**Initialize the applet*/
public void init() {
try {
jbInit();
userInit();
}
catch(Exception e) {
e.printStackTrace();
}
}
/**Component initialization*/
private void jbInit() throws Exception {
jButton1.setText("jButton1");
jButton1.setBounds(new Rectangle(26, 225, 79, 29));
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(ActionEvent e) {
jButton1_actionPerformed(e);
}
});
this.setSize(new Dimension(664, 300));
this.getContentPane().setLayout(null);
scroll.setBounds(new Rectangle(12, 24, 644, 189));
text1.setBounds(new Rectangle(16, 271, 365, 22));
this.getContentPane().add(scroll, null);
this.getContentPane().add(jButton1, null);
// this.getContentPane().add(text1, null);
scroll.getViewport().add(table1, null);
}
public void userInit()
{
db.connect();
vCdata=db.getFieldNames("T_REGISTRATION");
dtm=new DefaultTableModel();
table1.setModel(dtm);
for(int i=0;i
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
import javax.swing.*;
import com.util.*;
import java.util.*;
import javax.swing.table.*;
import java.sql.*;
/**
* Title: Cat工程
* Description: BCat
* Copyright: Copyright (c) 2001
* Company: smartcomm
* @author daniel
* @version 1.0
*/
public class TestDatabase extends JApplet {
boolean isStandalone = false;
JButton jButton1 = new JButton();
Database db=new Database();
JTable table1 = new JTable();
JScrollPane scroll = new JScrollPane();
JTextField text1 = new JTextField();
DefaultTableModel dtm;
Vector vCdata=null;
ResultSet rsRow=null; /
/**Construct the applet*/
public TestDatabase() {
}
/**Initialize the applet*/
public void init() {
try {
jbInit();
userInit();
}
catch(Exception e) {
e.printStackTrace();
}
}
/**Component initialization*/
private void jbInit() throws Exception {
jButton1.setText("jButton1");
jButton1.setBounds(new Rectangle(26, 225, 79, 29));
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(ActionEvent e) {
jButton1_actionPerformed(e);
}
});
this.setSize(new Dimension(664, 300));
this.getContentPane().setLayout(null);
scroll.setBounds(new Rectangle(12, 24, 644, 189));
text1.setBounds(new Rectangle(16, 271, 365, 22));
this.getContentPane().add(scroll, null);
this.getContentPane().add(jButton1, null);
// this.getContentPane().add(text1, null);
scroll.getViewport().add(table1, null);
}
public void userInit()
{
db.connect();
vCdata=db.getFieldNames("T_REGISTRATION");
dtm=new DefaultTableModel();
table1.setModel(dtm);
for(int i=0;i
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
站内导航:
特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!