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

Fix typo #374

Merged
merged 2 commits into from
Jul 31, 2024
Merged
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
* the text data. The embeddings are requested from Oracle Cloud's Generative
* AI service.
* </li><li>
* The {@link #searchTableText(Connection, List)} method executed pipelined SELECT
* The {@link #searchTableText(Connection, List)} method executes pipelined SELECT
* queries on virtual threads. The queries use the VECTOR_DISTANCE function of
* Oracle Database to perform a similarity search against vector embeddings.
* </li></ol>
Expand All @@ -95,10 +95,10 @@
* </p><p>
* A key thing to note about this demo is how many threads all share one JDBC
* connection, and use it to execute SQL operations concurrently. Normally, that
* would not be possible: Synchronous APIs like
* {@link PreparedStatement#execute()} block the calling the thread until all
* previous SQL opeations have completed. Concurrent SQL is possible because
* this demo uses pipelined database calls. Pipelined calls only available
* would not be possible: synchronous APIs like
* {@link PreparedStatement#execute()} block the calling thread until all
* previous SQL operations have completed. Concurrent SQL is possible because
* this demo uses pipelined database calls. Pipelined calls are only available
* through Oracle JDBC's Reactive Extensions API, with methods like
* {@link OraclePreparedStatement#executeAsyncOracle()}.
* </p>
Expand Down