arrow

JDBC - פרק 4

עדכון בסיס נתונים באמצעות שימוש ב-JDBC

עדכון בסיס נתונים זהו דבר פשוט באותה מידה כמו להפעיל שאילתות על בסיס נתונים. במקום הפונקציה ()executeQuery משתמשים בפונקציה ()executeUpdate , ואינך צריך לדאוג לתוצאה. ראה את הדוגמה הבאה:

Class.forName(sun.jdbc.odbc.JdbcOdbcDriver);
Connection jdbcConnection = 
	         DriverManager.getConnection
                 (jdbc:odbc:Access);
Statement sqlStatement = jdbcConnection.createStatement();

        // We have seen all of the above before.  
        // No surprises so far.  in the next line, we
        // will simply create a string of SQL.  

String sql = "INSERT INTO CUSTOMERS + 
             " (CustomerID, Firstname, LastName, Email)" +
	     " VALUES (004, 'Selena', 'Sol' " +
                      "'selena@extropia.com')";

        // Now submit the SQL....

sqlStatement.executeUpdate(sql);

כפי שניתן לראות, אין פה יותר מדי חוכמות. הוספה, עדכון, ומחיקה כולן מבוצעות על ידי הפונקציה ()executeUpdate . אתה מחבר קטע SQL ושולח אותו באמצעות ה-JDBC בקריאה אחת פשוטה.


שימוש ב-JDBC להפעלת שאילתות על בסיס נתונים
תוכן עניינים
עוד על JDBC


פרק 1 -> פרק 2 -> פרק 3 -> פרק 4 -> פרק 5 ->