import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; public class UpdateLivestreamTemplate { public static void main(String[] args) { try { Class.forName("oracle.jdbc.OracleDriver"); Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521/sisvietnam", "sisvietnam", "sisvietnam"); // 1. Update the Post's meta_description (YouTube URL) PreparedStatement updatePost = conn.prepareStatement( "UPDATE sis_post SET meta_description = ? WHERE slug = 'sis-vi-suc-khoe-cong-dong-ky-134'" ); updatePost.setString(1, "https://www.youtube.com/embed/j63kT9Bjrb4?si=N5JwIcuRn-iRxkYu"); updatePost.executeUpdate(); // 2. Update the template's iframe attributes String htmlTemplate = "\n" + "