sql >> Database >  >> RDS >> Mysql

mysql jdbc-stuurprogramma ondersteunt geen scheidingstekens in triggers met meerdere instructies

Delimiter is een commando voor de SQL-client. Het is niet nodig om een ​​scheidingsteken te gebruiken in JDBC. Het onderstaande voorbeeld laat het zien:

import java.sql.*;

public class TriggerExample {

    public static void main(String args[]) {

        String connectionURL = "jdbc:mysql://localhost:3306/test";
        Connection con = null;

        try {
            Class.forName("com.mysql.jdbc.Driver");
            con = DriverManager.getConnection(connectionURL, "login",
                    "password");
            Statement stmt = con.createStatement();
            stmt.execute("CREATE TRIGGER obs_update BEFORE UPDATE ON obs "
                    + "FOR EACH ROW "
                    + "BEGIN "
                    + "IF OLD.voided = 0 AND NEW.voided = 1 THEN "
                    + "   DELETE FROM clinic_obs WHERE id = OLD.obs_id; "
                    + "ELSE "
                    + "   UPDATE clinic_obs SET clinic_obs.revision_token = NOW() "
                    + "   WHERE NEW.id = clinic_obs.id; "
                    + "END IF; "
                    + "END;");
            con.close();
        } catch (SQLException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            if (con != null) {
                try {
                    con.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}



  1. Hoe het ER-model van de database van de server te krijgen met Workbench

  2. Kolominformatie retourneren voor een opgeslagen procedure in SQL Server:sp_sproc_columns

  3. Gids voor het ontwerpen van database voor online winkelwagentje in MySQL

  4. Praktische tips voor URL's met spatie en speciale tekens