Alert Message Does not Show in screen while a record delete from Database
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
Hello I have a problem when I am trying to validate if the record exist in this method, the alert dialog its ok, in the screen appears "registro no encontrado", but when i write the correct record to delete does not appear alert dialog "registro borrado correctamente" but it does delete the record, any idea what could possible i am doing wrong?, regards.
this is my Code.
public void borraregistro()
Integer numfac=null;
String consulta=" delete from auditoriac where numero_factura=? ";
Connection conn=null;
try
try
numfac = Integer.parseInt(borrar.getText());
catch (NumberFormatException ex)
Alert alert = new Alert(AlertType.INFORMATION);
alert.setTitle("Informacion");
alert.setHeaderText(null);
alert.setContentText("Campo Vacio, Por favor Digite el numero de Factura:" +ex);
alert.getDialogPane().setStyle("-fx-text-fill: white;rn" +
" -fx-border-color: rgb(238, 201, 91);rn" +
" -fx-border-radius: 5;rn" +
" -fx-padding: 10 2 10 -2;rn" +
" -fx-background-color:linear-gradient(to bottom, #ffffcc 15%, #ffcc99 91%);rn" +
" -fx-text-fill:black;rn" +
" -fx-font-family: Oswald;rn" +
" -fx-font-size:15px; ");
alert.showAndWait();
conn=DriverManager.getConnection("jdbc:sqlserver://DESKTOP-4JA6SFR:1433;databaseName=GLOSASNINO", "sa", "123");
PreparedStatement ps =conn.prepareStatement(consulta);
ps.setInt(1, numfac);
ps.executeUpdate();
int comparar =ps.executeUpdate();
if (comparar==0)
Alert alerta = new Alert(AlertType.INFORMATION);
alerta.setTitle("Informacion");
alerta.setHeaderText(null);
alerta.setContentText("Registro no encontrado");
alerta.getDialogPane().setStyle("-fx-text-fill: white;rn" +
" -fx-border-color: rgb(238, 201, 91);rn" +
" -fx-border-radius: 5;rn" +
" -fx-padding: 10 2 10 -2;rn" +
" -fx-background-color:linear-gradient(to bottom, #ffffcc 15%, #ffcc99 91%);rn" +
" -fx-text-fill:black;rn" +
" -fx-font-family: Oswald;rn" +
" -fx-font-size:15px; ");
alerta.showAndWait();
else
Alert alerta = new Alert(AlertType.INFORMATION);
alerta.setTitle("Informacion");
alerta.setHeaderText(null);
alerta.setContentText("Registro borrado correctamente");
alerta.getDialogPane().setStyle("-fx-text-fill: white;rn" +
" -fx-border-color: rgb(238, 201, 91);rn" +
" -fx-border-radius: 5;rn" +
" -fx-padding: 10 2 10 -2;rn" +
" -fx-background-color:linear-gradient(to bottom, #ffffcc 15%, #ffcc99 91%);rn" +
" -fx-text-fill:black;rn" +
" -fx-font-family: Oswald;rn" +
" -fx-font-size:15px; ");
alerta.showAndWait();
catch (SQLException e)
seleccionaregistros();
java javafx
add a comment |
Hello I have a problem when I am trying to validate if the record exist in this method, the alert dialog its ok, in the screen appears "registro no encontrado", but when i write the correct record to delete does not appear alert dialog "registro borrado correctamente" but it does delete the record, any idea what could possible i am doing wrong?, regards.
this is my Code.
public void borraregistro()
Integer numfac=null;
String consulta=" delete from auditoriac where numero_factura=? ";
Connection conn=null;
try
try
numfac = Integer.parseInt(borrar.getText());
catch (NumberFormatException ex)
Alert alert = new Alert(AlertType.INFORMATION);
alert.setTitle("Informacion");
alert.setHeaderText(null);
alert.setContentText("Campo Vacio, Por favor Digite el numero de Factura:" +ex);
alert.getDialogPane().setStyle("-fx-text-fill: white;rn" +
" -fx-border-color: rgb(238, 201, 91);rn" +
" -fx-border-radius: 5;rn" +
" -fx-padding: 10 2 10 -2;rn" +
" -fx-background-color:linear-gradient(to bottom, #ffffcc 15%, #ffcc99 91%);rn" +
" -fx-text-fill:black;rn" +
" -fx-font-family: Oswald;rn" +
" -fx-font-size:15px; ");
alert.showAndWait();
conn=DriverManager.getConnection("jdbc:sqlserver://DESKTOP-4JA6SFR:1433;databaseName=GLOSASNINO", "sa", "123");
PreparedStatement ps =conn.prepareStatement(consulta);
ps.setInt(1, numfac);
ps.executeUpdate();
int comparar =ps.executeUpdate();
if (comparar==0)
Alert alerta = new Alert(AlertType.INFORMATION);
alerta.setTitle("Informacion");
alerta.setHeaderText(null);
alerta.setContentText("Registro no encontrado");
alerta.getDialogPane().setStyle("-fx-text-fill: white;rn" +
" -fx-border-color: rgb(238, 201, 91);rn" +
" -fx-border-radius: 5;rn" +
" -fx-padding: 10 2 10 -2;rn" +
" -fx-background-color:linear-gradient(to bottom, #ffffcc 15%, #ffcc99 91%);rn" +
" -fx-text-fill:black;rn" +
" -fx-font-family: Oswald;rn" +
" -fx-font-size:15px; ");
alerta.showAndWait();
else
Alert alerta = new Alert(AlertType.INFORMATION);
alerta.setTitle("Informacion");
alerta.setHeaderText(null);
alerta.setContentText("Registro borrado correctamente");
alerta.getDialogPane().setStyle("-fx-text-fill: white;rn" +
" -fx-border-color: rgb(238, 201, 91);rn" +
" -fx-border-radius: 5;rn" +
" -fx-padding: 10 2 10 -2;rn" +
" -fx-background-color:linear-gradient(to bottom, #ffffcc 15%, #ffcc99 91%);rn" +
" -fx-text-fill:black;rn" +
" -fx-font-family: Oswald;rn" +
" -fx-font-size:15px; ");
alerta.showAndWait();
catch (SQLException e)
seleccionaregistros();
java javafx
add a comment |
Hello I have a problem when I am trying to validate if the record exist in this method, the alert dialog its ok, in the screen appears "registro no encontrado", but when i write the correct record to delete does not appear alert dialog "registro borrado correctamente" but it does delete the record, any idea what could possible i am doing wrong?, regards.
this is my Code.
public void borraregistro()
Integer numfac=null;
String consulta=" delete from auditoriac where numero_factura=? ";
Connection conn=null;
try
try
numfac = Integer.parseInt(borrar.getText());
catch (NumberFormatException ex)
Alert alert = new Alert(AlertType.INFORMATION);
alert.setTitle("Informacion");
alert.setHeaderText(null);
alert.setContentText("Campo Vacio, Por favor Digite el numero de Factura:" +ex);
alert.getDialogPane().setStyle("-fx-text-fill: white;rn" +
" -fx-border-color: rgb(238, 201, 91);rn" +
" -fx-border-radius: 5;rn" +
" -fx-padding: 10 2 10 -2;rn" +
" -fx-background-color:linear-gradient(to bottom, #ffffcc 15%, #ffcc99 91%);rn" +
" -fx-text-fill:black;rn" +
" -fx-font-family: Oswald;rn" +
" -fx-font-size:15px; ");
alert.showAndWait();
conn=DriverManager.getConnection("jdbc:sqlserver://DESKTOP-4JA6SFR:1433;databaseName=GLOSASNINO", "sa", "123");
PreparedStatement ps =conn.prepareStatement(consulta);
ps.setInt(1, numfac);
ps.executeUpdate();
int comparar =ps.executeUpdate();
if (comparar==0)
Alert alerta = new Alert(AlertType.INFORMATION);
alerta.setTitle("Informacion");
alerta.setHeaderText(null);
alerta.setContentText("Registro no encontrado");
alerta.getDialogPane().setStyle("-fx-text-fill: white;rn" +
" -fx-border-color: rgb(238, 201, 91);rn" +
" -fx-border-radius: 5;rn" +
" -fx-padding: 10 2 10 -2;rn" +
" -fx-background-color:linear-gradient(to bottom, #ffffcc 15%, #ffcc99 91%);rn" +
" -fx-text-fill:black;rn" +
" -fx-font-family: Oswald;rn" +
" -fx-font-size:15px; ");
alerta.showAndWait();
else
Alert alerta = new Alert(AlertType.INFORMATION);
alerta.setTitle("Informacion");
alerta.setHeaderText(null);
alerta.setContentText("Registro borrado correctamente");
alerta.getDialogPane().setStyle("-fx-text-fill: white;rn" +
" -fx-border-color: rgb(238, 201, 91);rn" +
" -fx-border-radius: 5;rn" +
" -fx-padding: 10 2 10 -2;rn" +
" -fx-background-color:linear-gradient(to bottom, #ffffcc 15%, #ffcc99 91%);rn" +
" -fx-text-fill:black;rn" +
" -fx-font-family: Oswald;rn" +
" -fx-font-size:15px; ");
alerta.showAndWait();
catch (SQLException e)
seleccionaregistros();
java javafx
Hello I have a problem when I am trying to validate if the record exist in this method, the alert dialog its ok, in the screen appears "registro no encontrado", but when i write the correct record to delete does not appear alert dialog "registro borrado correctamente" but it does delete the record, any idea what could possible i am doing wrong?, regards.
this is my Code.
public void borraregistro()
Integer numfac=null;
String consulta=" delete from auditoriac where numero_factura=? ";
Connection conn=null;
try
try
numfac = Integer.parseInt(borrar.getText());
catch (NumberFormatException ex)
Alert alert = new Alert(AlertType.INFORMATION);
alert.setTitle("Informacion");
alert.setHeaderText(null);
alert.setContentText("Campo Vacio, Por favor Digite el numero de Factura:" +ex);
alert.getDialogPane().setStyle("-fx-text-fill: white;rn" +
" -fx-border-color: rgb(238, 201, 91);rn" +
" -fx-border-radius: 5;rn" +
" -fx-padding: 10 2 10 -2;rn" +
" -fx-background-color:linear-gradient(to bottom, #ffffcc 15%, #ffcc99 91%);rn" +
" -fx-text-fill:black;rn" +
" -fx-font-family: Oswald;rn" +
" -fx-font-size:15px; ");
alert.showAndWait();
conn=DriverManager.getConnection("jdbc:sqlserver://DESKTOP-4JA6SFR:1433;databaseName=GLOSASNINO", "sa", "123");
PreparedStatement ps =conn.prepareStatement(consulta);
ps.setInt(1, numfac);
ps.executeUpdate();
int comparar =ps.executeUpdate();
if (comparar==0)
Alert alerta = new Alert(AlertType.INFORMATION);
alerta.setTitle("Informacion");
alerta.setHeaderText(null);
alerta.setContentText("Registro no encontrado");
alerta.getDialogPane().setStyle("-fx-text-fill: white;rn" +
" -fx-border-color: rgb(238, 201, 91);rn" +
" -fx-border-radius: 5;rn" +
" -fx-padding: 10 2 10 -2;rn" +
" -fx-background-color:linear-gradient(to bottom, #ffffcc 15%, #ffcc99 91%);rn" +
" -fx-text-fill:black;rn" +
" -fx-font-family: Oswald;rn" +
" -fx-font-size:15px; ");
alerta.showAndWait();
else
Alert alerta = new Alert(AlertType.INFORMATION);
alerta.setTitle("Informacion");
alerta.setHeaderText(null);
alerta.setContentText("Registro borrado correctamente");
alerta.getDialogPane().setStyle("-fx-text-fill: white;rn" +
" -fx-border-color: rgb(238, 201, 91);rn" +
" -fx-border-radius: 5;rn" +
" -fx-padding: 10 2 10 -2;rn" +
" -fx-background-color:linear-gradient(to bottom, #ffffcc 15%, #ffcc99 91%);rn" +
" -fx-text-fill:black;rn" +
" -fx-font-family: Oswald;rn" +
" -fx-font-size:15px; ");
alerta.showAndWait();
catch (SQLException e)
seleccionaregistros();
java javafx
java javafx
edited Nov 16 '18 at 14:25
Michael Hancock
9701820
9701820
asked Nov 16 '18 at 13:30
Sistem07Sistem07
133
133
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You are executing your update twice:
ps.executeUpdate();
int comparar = ps.executeUpdate();
The record is deleted on your first call to the executeUpdate()
method. On the next line when you call the method again and set the comparar
variable, there is nothing left to delete so 0 rows are affected.
Remove the first ps.executeUpdate()
and you should see a different result.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53338879%2falert-message-does-not-show-in-screen-while-a-record-delete-from-database%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You are executing your update twice:
ps.executeUpdate();
int comparar = ps.executeUpdate();
The record is deleted on your first call to the executeUpdate()
method. On the next line when you call the method again and set the comparar
variable, there is nothing left to delete so 0 rows are affected.
Remove the first ps.executeUpdate()
and you should see a different result.
add a comment |
You are executing your update twice:
ps.executeUpdate();
int comparar = ps.executeUpdate();
The record is deleted on your first call to the executeUpdate()
method. On the next line when you call the method again and set the comparar
variable, there is nothing left to delete so 0 rows are affected.
Remove the first ps.executeUpdate()
and you should see a different result.
add a comment |
You are executing your update twice:
ps.executeUpdate();
int comparar = ps.executeUpdate();
The record is deleted on your first call to the executeUpdate()
method. On the next line when you call the method again and set the comparar
variable, there is nothing left to delete so 0 rows are affected.
Remove the first ps.executeUpdate()
and you should see a different result.
You are executing your update twice:
ps.executeUpdate();
int comparar = ps.executeUpdate();
The record is deleted on your first call to the executeUpdate()
method. On the next line when you call the method again and set the comparar
variable, there is nothing left to delete so 0 rows are affected.
Remove the first ps.executeUpdate()
and you should see a different result.
answered Nov 16 '18 at 13:45
ZephyrZephyr
4,73521033
4,73521033
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53338879%2falert-message-does-not-show-in-screen-while-a-record-delete-from-database%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown