有没有办法在我的应用程序上重用数据库连接?

时间:2015-11-17 16:30:58

标签: java mysql database connection

我有一个Java应用程序,但我有一个问题,当我做一些操作\动作,如从数据库或插入等获取信息时,应用程序创建新的连接。是否可以让所有连接已经完成的过程知道。 (像静态连接一样)...... 我不擅长编程,如果提问有点愚蠢,请提前抱歉。

package dreamproject;

   import java.awt.Component;
   import javax.swing.JLabel;
   import javax.swing.JOptionPane;
   import java.awt.Component;

public class DiaryNotes {
DBConnect connect = new DBConnect();
private Component frame;

public void NoteCreation(int authorzedUserId,String title,String text,String date)
{
    try
    {

    String queryInsertNote = "INSERT INTO notes (authorzedUserId,title,text,date) VALUES ('"+ authorzedUserId +"','"+ title +"','"+ text +"','"+ date +"')";
    connect.statement.executeUpdate(queryInsertNote);
    JOptionPane.showMessageDialog(frame,"The note has been created");

    }catch(Exception ex)
    {
    System.out.println("Error " + ex);
    }

}

}

和另外一类我创造对象

    registr.registr(textRecord.getText(),title.getText(),confirmPasswordField.getText());

0 个答案:

没有答案