Example usage for java.sql PreparedStatement execute

List of usage examples for java.sql PreparedStatement execute

Introduction

In this page you can find the example usage for java.sql PreparedStatement execute.

Prototype

boolean execute(String sql) throws SQLException;

Source Link

Document

Executes the given SQL statement, which may return multiple results.

Usage

From source file:br.com.great.dao.SonsDAO.java

/**
* 
* Mtodo responsvel por set os dados da CSons no banco de dados
*
 * @param som String/*from w w w  .  jav a 2 s .  co  m*/
 * @param jogador_id String
 * @param latitude String
 * @param longitude String
 * @param csons_id String
* @return boolean Se atualizar true ou false
* @author Carleandro Noleto
* @since 14/01/2015
* @version 1.0
*/
public boolean setCSom(String som, String jogador_id, String latitude, String longitude, String csons_id) {
    PreparedStatement pstmt = null;
    ResultSet rs = null;
    Connection conexao = criarConexao();
    try {
        String sql = "UPDATE `csons` SET  `som` =  '" + som + "'," + " `jogador_id` =  '" + jogador_id
                + "', `latitude` =  '" + latitude + "',`longitude` =  '" + longitude + "' WHERE  `csons`.`id` ="
                + csons_id + ";";
        System.out.println(sql);
        pstmt = conexao.prepareStatement(sql);
        pstmt.execute(sql);
        return true;
    } catch (SQLException e) {
        System.out.println("Erro ao salvar som em grupo : " + e);
    } catch (Exception e) {
        System.out.println("Erro ao salvar arquivo som em grupo : " + e);
    } finally {
        fecharConexao(conexao, pstmt, rs);
    }
    return false;
}

From source file:br.com.great.dao.VideosDAO.java

/**
* 
* Mtodo responsvel por set os dados da CSons no banco de dados
*
 * @param video String/* w ww  .ja  va  2s  .c o  m*/
 * @param jogador_id String
 * @param latitude String
 * @param longitude String
 * @param cvideos_id String
* @return boolean Se atualiza true ou false
* @author Carleandro Noleto
* @since 14/01/2015
* @version 1.0
*/
public boolean setCVideo(String video, String jogador_id, String latitude, String longitude,
        String cvideos_id) {
    PreparedStatement pstmt = null;
    ResultSet rs = null;
    Connection conexao = criarConexao();
    try {
        String sql = "UPDATE `cvideos` SET  `video` =  '" + video + "'," + " `jogador_id` =  '" + jogador_id
                + "', `latitude` =  '" + latitude + "',`longitude` =  '" + longitude
                + "' WHERE  `cvideos`.`id` =" + cvideos_id + ";";
        System.out.println(sql);
        pstmt = conexao.prepareStatement(sql);
        pstmt.execute(sql);
        return true;
    } catch (SQLException e) {
        System.out.println("Erro ao salvar video em grupo : " + e);
    } catch (Exception e) {
        System.out.println("Erro ao salvar arquivo video em grupo : " + e);
    } finally {
        fecharConexao(conexao, pstmt, rs);
    }
    return false;
}

From source file:br.com.great.dao.TextosDAO.java

/**
* 
* Mtodo responsvel por set os dados da CTextos no banco de dados
*
 * @param texto String// w  ww  .j a  v  a2 s .c om
 * @param jogador_id String
 * @param latitude String
 * @param longitude String
 * @param ctexto_id String
* @return boolean Se atualiza True ou False
* @author Carleandro Noleto
* @since 19/01/2015
* @version 1.0
*/
public boolean setCTexto(String texto, String jogador_id, String latitude, String longitude, String ctexto_id) {
    PreparedStatement pstmt = null;
    ResultSet rs = null;
    Connection conexao = criarConexao();
    try {
        String sql = "UPDATE `ctextos` SET  `texto` =  '" + texto + "'," + " `jogador_id` =  '" + jogador_id
                + "', `latitude` =  '" + latitude + "',`longitude` =  '" + longitude
                + "' WHERE  `ctextos`.`id` =" + ctexto_id + ";";
        System.out.println(sql);
        pstmt = conexao.prepareStatement(sql);
        pstmt.execute(sql);
        return true;
    } catch (SQLException e) {
        System.out.println("Erro ao salvar settexto em grupo : " + e);
    } catch (Exception e) {
        System.out.println("Erro ao salvar arquivo settexto em grupo : " + e);
    } finally {
        fecharConexao(conexao, pstmt, rs);
    }
    return false;
}