-
Attempting to run a script with multiple SQL statements, for example:
```
select 'Hello World' as "Welcome Message";
select 'Hello again!' as "Message 2";
```
results in the following error:
…
kjn70 updated
3 years ago
-
Hello,
I have been using headphones for a few months now and have been loving it. I recently rebuilt my music database (over 60,000 tracks) and have been having some problems. After the scan runs f…
-
See https://github.com/open-telemetry/semantic-conventions/pull/1482#discussion_r1805142038
E.g. query like `CALL procedure-name` should result in the following attributes:
`db.query.text = "CAL…
-
Greets !
Quick suggestion to hear the community's thoughts before opening a PR:
I recently noticed that if one would use `.Where()` and pass it multiple OR clauses, say, without using proper `sq…
-
### Describe the feature
In the current implementation , we are directly passing the POST data with session variables into the query string which can expose the application to SQL injection. Re-facto…
-
Using prepared statements can be more efficient but [PEP 249](https://peps.python.org/pep-0249/) does not provide an API for it. Instead, [it mentions](https://peps.python.org/pep-0249/#execute) that
…
-
### Describe the bug
When trying to run multiple semi-colon separated queries to Databricks with the `run_query()` macro, I get a syntax error `PARSE_SYNTAX_ERROR`.
### Steps To Reproduce
Below …
-
A clear and concise description of what the bug is.
#### How to reproduce the bug
1. Create a database Connection of type oracle (first qithout enable DML operations)
2. Open SQL Lab and run foll…
-
I have a Primary/Replica Setup and get the wrong results from FOUND_ROWS() in >50% of all queries when using prepared statements.
Most of the time the result count is 1 but sometimes it's also 0.
…
-
```
In a past life, there were a couple useful idioms I added to a
database-access layer to help guard against injection attacks.
---
Bind parameters cannot be used to specify structural things. Yo…