単純なステートメントを置換して使用しないでください。代わりにpreparedStatementを使用してください[読む:いつ使用する必要があるかステートメントの代わりにPreparedStatement? ]
String sql = "insert into MYTABLE_TRANSACTIONS (ACCOUNT_ID,TRANSACTION_TYPE,AMOUNT) values (?, ?, ?)";
PreparedStatement pstmt = connection.prepareStatement(sql);
pstmt.setString(1, name );
pstmt.setString(2, action );
pstmt.setDouble(3, amount);
pstmt.executeUpdate();