ฉันเริ่มสับสนเล็กน้อยฉันอ่านด้านล่างจากhttp://en.wikipedia.org/wiki/Java_Database_Connectivity
Connection conn = DriverManager.getConnection(
"jdbc:somejdbcvendor:other data needed by some jdbc vendor",
"myLogin",
"myPassword" );
Statement stmt = conn.createStatement();
try {
stmt.executeUpdate( "INSERT INTO MyTable( name ) VALUES ( 'my name' ) " );
} finally {
//It's important to close the statement when you are done with it
stmt.close();
}
คุณไม่จำเป็นต้องปิด conn Connection หรือไม่? จะเกิดอะไรขึ้นถ้า conn.close () ไม่เกิดขึ้น?
ฉันมีเว็บแอปส่วนตัวที่ฉันดูแลอยู่ซึ่งตอนนี้ยังไม่ได้ปิดแบบฟอร์มทั้งสองแบบ แต่สิ่งที่สำคัญจริงๆคือ stmt one, conn one หรือทั้งสองอย่าง?
ไซต์หยุดทำงานเป็นระยะ ๆ แต่เซิร์ฟเวอร์ยังคงบอกว่ามันเป็นปัญหาการเชื่อมต่อฐานข้อมูลความสงสัยของฉันคือมันไม่ได้ถูกปิด แต่ฉันไม่รู้ว่าจะปิดตัวไหนดี