This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package amq; | |
import jakarta.jms.Connection; | |
import jakarta.jms.ConnectionFactory; | |
import jakarta.jms.JMSException; | |
import jakarta.jms.Message; | |
import jakarta.jms.MessageConsumer; | |
import jakarta.jms.Session; | |
import jakarta.jms.TextMessage; | |
import jakarta.jms.Topic; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
SCRIPT=`basename $0` | |
if [ $# -lt 1 ] || [ "$1" = "-help" ] || [ "$1" = "--help" ] ; then | |
cat -- <<EOF | |
NAME | |
${SCRIPT} - run git command for all directories | |
SYNOPSIS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.dua3.sql; | |
import java.sql.Connection; | |
import java.sql.Date; | |
import java.sql.PreparedStatement; | |
import java.sql.ResultSet; | |
import java.sql.SQLException; | |
import java.sql.Statement; | |
import java.sql.Timestamp; | |
import java.time.LocalDate; |