mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
remove extra construction
This commit is contained in:
parent
edeee5654e
commit
b840dae964
1 changed files with 4 additions and 6 deletions
|
|
@ -198,11 +198,6 @@ int Request::DB::SESSION::clean(
|
||||||
{
|
{
|
||||||
while (::sqlite3_step(statement) == SQLITE_ROW)
|
while (::sqlite3_step(statement) == SQLITE_ROW)
|
||||||
{
|
{
|
||||||
const int APP_BROWSER_MAIN_TAB_PAGE_NAVIGATION_REQUEST__SESSION_ID = sqlite3_column_int(
|
|
||||||
statement,
|
|
||||||
DB::SESSION::ID
|
|
||||||
);
|
|
||||||
|
|
||||||
// Delete record
|
// Delete record
|
||||||
const int EXEC_STATUS = sqlite3_exec(
|
const int EXEC_STATUS = sqlite3_exec(
|
||||||
db,
|
db,
|
||||||
|
|
@ -210,7 +205,10 @@ int Request::DB::SESSION::clean(
|
||||||
R"SQL(
|
R"SQL(
|
||||||
DELETE FROM `app_browser_main_tab_page_navigation_request__session` WHERE `id` = %d
|
DELETE FROM `app_browser_main_tab_page_navigation_request__session` WHERE `id` = %d
|
||||||
)SQL",
|
)SQL",
|
||||||
APP_BROWSER_MAIN_TAB_PAGE_NAVIGATION_REQUEST__SESSION_ID
|
sqlite3_column_int(
|
||||||
|
statement,
|
||||||
|
DB::SESSION::ID
|
||||||
|
)
|
||||||
).c_str(),
|
).c_str(),
|
||||||
nullptr,
|
nullptr,
|
||||||
nullptr,
|
nullptr,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue