mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 14:19:48 +00:00
LibSQL: Introduce SELECT ... LIMIT xxx OFFSET yyy
What it says on the tin.
This commit is contained in:
parent
7fc901d1b3
commit
6e9f06fc9f
Notes:
sideshowbarker
2024-07-18 04:38:32 +09:00
Author: https://github.com/JanDeVisser
Commit: 6e9f06fc9f
Pull-request: https://github.com/SerenityOS/serenity/pull/11835
Reviewed-by: https://github.com/trflynn89 ✅
5 changed files with 166 additions and 7 deletions
31
Userland/Libraries/LibSQL/SQLResult.cpp
Normal file
31
Userland/Libraries/LibSQL/SQLResult.cpp
Normal file
|
@ -0,0 +1,31 @@
|
|||
/*
|
||||
* Copyright (c) 2022, Jan de Visser <jan@de-visser.net>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibSQL/SQLResult.h>
|
||||
|
||||
namespace SQL {
|
||||
|
||||
void SQLResult::insert(Tuple const& row, Tuple const& sort_key)
|
||||
{
|
||||
m_has_results = true;
|
||||
m_result_set.insert_row(row, sort_key);
|
||||
}
|
||||
|
||||
void SQLResult::limit(size_t offset, size_t limit)
|
||||
{
|
||||
if (offset > 0) {
|
||||
if (offset > m_result_set.size()) {
|
||||
m_result_set.clear();
|
||||
return;
|
||||
}
|
||||
m_result_set.remove(0, offset);
|
||||
}
|
||||
if (m_result_set.size() > limit) {
|
||||
m_result_set.remove(limit, m_result_set.size() - limit);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue