SQLiteDatabase DROP TABLE IF EXISTS not working
Situation
I need to delete all entries of a specific Table in the database so i figured i would just drop it.
DROP TABLE IF EXISTS LogEntry
I tried running the sql using SQLiteDatabase#execSql(String)
and SQLiteDatabase#rawQuery(String, String)
. I start a transaction before execution it and end it after executing it using SQLiteDatabase#beginTransaction()
and SQLiteDatabase#endTransaction()
.
Problem
In both cases the SQL executed without throwing an Exception but the table still exists. I ran a SELECT Statement right after the drop to see if it worked and it had the same results as before the drop.
android database sqlite
|
show 2 more comments
Situation
I need to delete all entries of a specific Table in the database so i figured i would just drop it.
DROP TABLE IF EXISTS LogEntry
I tried running the sql using SQLiteDatabase#execSql(String)
and SQLiteDatabase#rawQuery(String, String)
. I start a transaction before execution it and end it after executing it using SQLiteDatabase#beginTransaction()
and SQLiteDatabase#endTransaction()
.
Problem
In both cases the SQL executed without throwing an Exception but the table still exists. I ran a SELECT Statement right after the drop to see if it worked and it had the same results as before the drop.
android database sqlite
1
Why not justdelete from LogEntry
. Then you don't need to recreate it
– juergen d
Nov 21 at 10:17
@juergend That would be a possible workaround, but i dont need the table once its empty. Im mostly interested in the reason why the drop statement executes but doesn't have any effect.
– Basti
Nov 21 at 10:36
beginTransaction()
has to be called BEFORE executing your SQL commands.rawQuery()
is only used to run queries, not commands. It's actuallyexecSql()
, notexecuteSql()
– Fantômas
Nov 21 at 10:53
Where exactly do you have the transaction? Note the blockquote in @MikeT's answer talking about nested transactions -SQLiteOpenHelper
lifecycle callbacks are already run inside a transaction.
– laalto
Nov 21 at 11:20
@Basti You have change your database version ?
– Hardik Parmar
Nov 21 at 16:48
|
show 2 more comments
Situation
I need to delete all entries of a specific Table in the database so i figured i would just drop it.
DROP TABLE IF EXISTS LogEntry
I tried running the sql using SQLiteDatabase#execSql(String)
and SQLiteDatabase#rawQuery(String, String)
. I start a transaction before execution it and end it after executing it using SQLiteDatabase#beginTransaction()
and SQLiteDatabase#endTransaction()
.
Problem
In both cases the SQL executed without throwing an Exception but the table still exists. I ran a SELECT Statement right after the drop to see if it worked and it had the same results as before the drop.
android database sqlite
Situation
I need to delete all entries of a specific Table in the database so i figured i would just drop it.
DROP TABLE IF EXISTS LogEntry
I tried running the sql using SQLiteDatabase#execSql(String)
and SQLiteDatabase#rawQuery(String, String)
. I start a transaction before execution it and end it after executing it using SQLiteDatabase#beginTransaction()
and SQLiteDatabase#endTransaction()
.
Problem
In both cases the SQL executed without throwing an Exception but the table still exists. I ran a SELECT Statement right after the drop to see if it worked and it had the same results as before the drop.
android database sqlite
android database sqlite
edited Nov 22 at 7:09
asked Nov 21 at 10:15
Basti
423317
423317
1
Why not justdelete from LogEntry
. Then you don't need to recreate it
– juergen d
Nov 21 at 10:17
@juergend That would be a possible workaround, but i dont need the table once its empty. Im mostly interested in the reason why the drop statement executes but doesn't have any effect.
– Basti
Nov 21 at 10:36
beginTransaction()
has to be called BEFORE executing your SQL commands.rawQuery()
is only used to run queries, not commands. It's actuallyexecSql()
, notexecuteSql()
– Fantômas
Nov 21 at 10:53
Where exactly do you have the transaction? Note the blockquote in @MikeT's answer talking about nested transactions -SQLiteOpenHelper
lifecycle callbacks are already run inside a transaction.
– laalto
Nov 21 at 11:20
@Basti You have change your database version ?
– Hardik Parmar
Nov 21 at 16:48
|
show 2 more comments
1
Why not justdelete from LogEntry
. Then you don't need to recreate it
– juergen d
Nov 21 at 10:17
@juergend That would be a possible workaround, but i dont need the table once its empty. Im mostly interested in the reason why the drop statement executes but doesn't have any effect.
– Basti
Nov 21 at 10:36
beginTransaction()
has to be called BEFORE executing your SQL commands.rawQuery()
is only used to run queries, not commands. It's actuallyexecSql()
, notexecuteSql()
– Fantômas
Nov 21 at 10:53
Where exactly do you have the transaction? Note the blockquote in @MikeT's answer talking about nested transactions -SQLiteOpenHelper
lifecycle callbacks are already run inside a transaction.
– laalto
Nov 21 at 11:20
@Basti You have change your database version ?
– Hardik Parmar
Nov 21 at 16:48
1
1
Why not just
delete from LogEntry
. Then you don't need to recreate it– juergen d
Nov 21 at 10:17
Why not just
delete from LogEntry
. Then you don't need to recreate it– juergen d
Nov 21 at 10:17
@juergend That would be a possible workaround, but i dont need the table once its empty. Im mostly interested in the reason why the drop statement executes but doesn't have any effect.
– Basti
Nov 21 at 10:36
@juergend That would be a possible workaround, but i dont need the table once its empty. Im mostly interested in the reason why the drop statement executes but doesn't have any effect.
– Basti
Nov 21 at 10:36
beginTransaction()
has to be called BEFORE executing your SQL commands. rawQuery()
is only used to run queries, not commands. It's actually execSql()
, not executeSql()
– Fantômas
Nov 21 at 10:53
beginTransaction()
has to be called BEFORE executing your SQL commands. rawQuery()
is only used to run queries, not commands. It's actually execSql()
, not executeSql()
– Fantômas
Nov 21 at 10:53
Where exactly do you have the transaction? Note the blockquote in @MikeT's answer talking about nested transactions -
SQLiteOpenHelper
lifecycle callbacks are already run inside a transaction.– laalto
Nov 21 at 11:20
Where exactly do you have the transaction? Note the blockquote in @MikeT's answer talking about nested transactions -
SQLiteOpenHelper
lifecycle callbacks are already run inside a transaction.– laalto
Nov 21 at 11:20
@Basti You have change your database version ?
– Hardik Parmar
Nov 21 at 16:48
@Basti You have change your database version ?
– Hardik Parmar
Nov 21 at 16:48
|
show 2 more comments
1 Answer
1
active
oldest
votes
I believe, assuimg #'s are .'s, the reason is that you have omitted the setTransactionSuccessful, without this endTransaction will rollback (undo everything done in the transaction).
As per :-
Transactions can be nested. When the outer transaction is ended all of
the work done in that transaction and all of the nested transactions
will be committed or rolled back. The changes will be rolled back if
any transaction is ended without being marked as clean (by calling
setTransactionSuccessful). Otherwise they will be committed.
beginTransaction
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%2f53409782%2fsqlitedatabase-drop-table-if-exists-not-working%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
I believe, assuimg #'s are .'s, the reason is that you have omitted the setTransactionSuccessful, without this endTransaction will rollback (undo everything done in the transaction).
As per :-
Transactions can be nested. When the outer transaction is ended all of
the work done in that transaction and all of the nested transactions
will be committed or rolled back. The changes will be rolled back if
any transaction is ended without being marked as clean (by calling
setTransactionSuccessful). Otherwise they will be committed.
beginTransaction
add a comment |
I believe, assuimg #'s are .'s, the reason is that you have omitted the setTransactionSuccessful, without this endTransaction will rollback (undo everything done in the transaction).
As per :-
Transactions can be nested. When the outer transaction is ended all of
the work done in that transaction and all of the nested transactions
will be committed or rolled back. The changes will be rolled back if
any transaction is ended without being marked as clean (by calling
setTransactionSuccessful). Otherwise they will be committed.
beginTransaction
add a comment |
I believe, assuimg #'s are .'s, the reason is that you have omitted the setTransactionSuccessful, without this endTransaction will rollback (undo everything done in the transaction).
As per :-
Transactions can be nested. When the outer transaction is ended all of
the work done in that transaction and all of the nested transactions
will be committed or rolled back. The changes will be rolled back if
any transaction is ended without being marked as clean (by calling
setTransactionSuccessful). Otherwise they will be committed.
beginTransaction
I believe, assuimg #'s are .'s, the reason is that you have omitted the setTransactionSuccessful, without this endTransaction will rollback (undo everything done in the transaction).
As per :-
Transactions can be nested. When the outer transaction is ended all of
the work done in that transaction and all of the nested transactions
will be committed or rolled back. The changes will be rolled back if
any transaction is ended without being marked as clean (by calling
setTransactionSuccessful). Otherwise they will be committed.
beginTransaction
answered Nov 21 at 10:56
MikeT
14.8k102441
14.8k102441
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53409782%2fsqlitedatabase-drop-table-if-exists-not-working%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
1
Why not just
delete from LogEntry
. Then you don't need to recreate it– juergen d
Nov 21 at 10:17
@juergend That would be a possible workaround, but i dont need the table once its empty. Im mostly interested in the reason why the drop statement executes but doesn't have any effect.
– Basti
Nov 21 at 10:36
beginTransaction()
has to be called BEFORE executing your SQL commands.rawQuery()
is only used to run queries, not commands. It's actuallyexecSql()
, notexecuteSql()
– Fantômas
Nov 21 at 10:53
Where exactly do you have the transaction? Note the blockquote in @MikeT's answer talking about nested transactions -
SQLiteOpenHelper
lifecycle callbacks are already run inside a transaction.– laalto
Nov 21 at 11:20
@Basti You have change your database version ?
– Hardik Parmar
Nov 21 at 16:48