-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSearchBook.java
More file actions
196 lines (165 loc) · 7.15 KB
/
SearchBook.java
File metadata and controls
196 lines (165 loc) · 7.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package Library-Management;
import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.JTextField;
import javax.swing.table.DefaultTableModel;
/**
*
* @author Shweta Sindhu
*/
public class SearchBook extends javax.swing.JFrame {
/**
* Creates new form SearchBook
*/Connection con=DbConnect.getConnection();
private JTextField searchField;
private JButton searchButton;
private JComboBox<String> searchByComboBox;
private JTable resultTable;
private DefaultTableModel tableModel;
public SearchBook() {
// GUI Setup
setTitle("Search Book");
setSize(1100, 800);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLayout(null);
JLabel searchLabel = new JLabel("Search By:");
searchLabel.setBounds(20, 20, 80, 25);
add(searchLabel);
searchByComboBox = new JComboBox<>(new String[]{"Book Name", "Author"});
searchByComboBox.setBounds(100, 20, 120, 25);
add(searchByComboBox);
searchField = new JTextField();
searchField.setBounds(240, 20, 200, 25);
add(searchField);
searchButton = new JButton("Search");
searchButton.setBounds(460, 20, 100, 25);
add(searchButton);
tableModel = new DefaultTableModel(new String[]{"ID", "Book Name", "Author", "Copies Available"}, 0);
resultTable = new JTable(tableModel);
JScrollPane scrollPane = new JScrollPane(resultTable);
scrollPane.setBounds(20, 60, 540, 300);
add(scrollPane);
// Button Action Listener
searchButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
searchBooks();
}
});
setLocationRelativeTo(null);
setVisible(true);
}
private void searchBooks() {
String searchBy = searchByComboBox.getSelectedItem().toString();
String searchText = searchField.getText();
String query;
if (searchBy.equals("Book Name")) {
query = "SELECT * FROM book WHERE bookname LIKE ?";
} else {
query = "SELECT * FROM book WHERE authorname LIKE ?";
}
try (
PreparedStatement ps = con.prepareStatement(query)) {
ps.setString(1, "%" + searchText + "%");
ResultSet rs = ps.executeQuery();
// Clear existing rows
tableModel.setRowCount(0);
// Add rows to the table
while (rs.next()) {
tableModel.addRow(new Object[]{
rs.getInt("bookid"),
rs.getString("bookname"),
rs.getString("authorname"),
rs.getString("available")
});
}
} catch (SQLException ex) {
JOptionPane.showMessageDialog(this, "Error: " + ex.getMessage());
}
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">
private void initComponents() {
jLabel3 = new javax.swing.JLabel();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jLabel3.setFont(new java.awt.Font("Tahoma", 1, 24)); // NOI18N
jLabel3.setText(" SEARCH BOOK");
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(373, 373, 373)
.addComponent(jLabel3, javax.swing.GroupLayout.PREFERRED_SIZE, 186, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(600, Short.MAX_VALUE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(31, 31, 31)
.addComponent(jLabel3, javax.swing.GroupLayout.PREFERRED_SIZE, 33, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(563, Short.MAX_VALUE))
);
pack();
setLocationRelativeTo(null);
}// </editor-fold>
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(SearchBook.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(SearchBook.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(SearchBook.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(SearchBook.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new SearchBook().setVisible(true);
}
});
}
// Variables declaration - do not modify
private javax.swing.JLabel jLabel3;
// End of variables declaration
}