Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved discussion and examples #381

Merged
merged 50 commits into from
Nov 29, 2024
Merged
Changes from 1 commit
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
97aa48a
Made transactions/updates a tutorial
anarthal Nov 6, 2024
58695d9
Example update and tutorial outline
anarthal Nov 6, 2024
57f1a62
Full tutorial development
anarthal Nov 6, 2024
ed8043c
Tutorial fixes
anarthal Nov 6, 2024
45bc482
Fix broken links & cleanup
anarthal Nov 6, 2024
379e65d
Templated connection doc (1)
anarthal Nov 11, 2024
fcf20f9
Finished templated connection section
anarthal Nov 11, 2024
d2dd032
Templated connection fixes
anarthal Nov 11, 2024
cfee73e
Snippets to separate file
anarthal Nov 11, 2024
e3dd369
Reference fixes
anarthal Nov 11, 2024
9da24cb
Example on INSERTs
anarthal Nov 12, 2024
087332e
C++20 comment
anarthal Nov 12, 2024
c110491
Example on deletes
anarthal Nov 12, 2024
d3a2981
New charsets
anarthal Nov 14, 2024
aac17bb
Charset fixes
anarthal Nov 14, 2024
807effd
connection_pool tutorial
anarthal Nov 19, 2024
6609e29
connection_pool tutorial fixes
anarthal Nov 19, 2024
5d3c542
Python runner
anarthal Nov 19, 2024
9a304aa
cmake
anarthal Nov 19, 2024
7b1304f
jamfile
anarthal Nov 19, 2024
e6ffcd4
Error handling first approach
anarthal Nov 19, 2024
4c17339
Removed obsolete timeouts example
anarthal Nov 19, 2024
3ae3da6
Jamfile refactor
anarthal Nov 19, 2024
4cbc886
Section on completion tokens
anarthal Nov 20, 2024
9bbf393
Tutorial discussion
anarthal Nov 20, 2024
a684791
Error handling fixes
anarthal Nov 20, 2024
edba297
Rework tutorial 6 to skip section on cancellations
anarthal Nov 23, 2024
aaf69cc
Simplify timeouts
anarthal Nov 26, 2024
32713c8
Wording 1
anarthal Nov 26, 2024
e9afdc2
Final wording
anarthal Nov 26, 2024
97b5fd2
Refactor tutorial snippets and add guards
anarthal Nov 27, 2024
0d28d27
Tutorial snippets to code
anarthal Nov 27, 2024
b88c9c1
Minor fixes
anarthal Nov 27, 2024
1fae8a0
Old Python fixes
anarthal Nov 27, 2024
6491d38
Fix templated connection snippets on Windows
anarthal Nov 27, 2024
2b65713
Missing include in inserts
anarthal Nov 27, 2024
0eefe6d
Fix valgrind in examples
anarthal Nov 27, 2024
765b1f1
Workaround gcc bugs
anarthal Nov 27, 2024
447143a
Improve CI logs
anarthal Nov 27, 2024
05c7ab0
Update coverage to gcc-14
anarthal Nov 27, 2024
a2f5719
32 bit fixes
anarthal Nov 27, 2024
3b01d0d
section name mismatch
anarthal Nov 27, 2024
f41c70c
Proper gcc bug workaround
anarthal Nov 27, 2024
363b1b5
Recover reference
anarthal Nov 27, 2024
a5ad5d1
Updated tutorial listing titles
anarthal Nov 27, 2024
31a3d11
Fixed async link
anarthal Nov 27, 2024
c115f1b
Fix race condition in tutorials snippets
anarthal Nov 27, 2024
8e00492
Permissive lcov flags
anarthal Nov 27, 2024
673686c
Merge branch 'develop' into feature/366-new-disussion-2
anarthal Nov 29, 2024
cb39a2c
Comment fix in jamfile
anarthal Nov 29, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Removed obsolete timeouts example
anarthal committed Nov 19, 2024
commit 4c17339b17e3fd78d1f13c04d619a7df98012e16
167 changes: 0 additions & 167 deletions example/2_simple/timeouts.cpp

This file was deleted.

1 change: 0 additions & 1 deletion example/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -88,7 +88,6 @@ add_simple_example(disable_tls ARGS ${REGULAR_ARGS})
add_simple_example(tls_certificate_verification ARGS ${REGULAR_ARGS})
add_simple_example(metadata ARGS ${REGULAR_ARGS})
add_simple_example(prepared_statements ARGS ${REGULAR_ARGS} "HGS")
add_simple_example(timeouts ARGS ${REGULAR_ARGS} "HGS")
add_simple_example(pipeline ARGS ${REGULAR_ARGS} "HGS")
add_simple_example(multi_function ARGS ${REGULAR_ARGS})
add_simple_example(source_script ARGS ${REGULAR_ARGS} ${CMAKE_CURRENT_SOURCE_DIR}/private/test_script.sql)