-
```
create table ten(a int primary key);
insert into ten values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
create table one_k(a int primary key);
insert into one_k select A.a + B.a* 10 + C.a * 100…
-
**Issue type:**
[ ] question
[x] bug report
[x] feature request
[ ] documentation issue
**Database system/driver:**
[ ] `cordova`
[ ] `mongodb`
[ ] `mssql`
[x] `mysql` / `mariadb`
[ ] …
-
**Issue type:**
[ ] question
[X] bug report
[ ] feature request
[ ] documentation issue
**Database system/driver:**
[ ] `cordova`
[ ] `mongodb`
[ ] `mssql`
[ ] `mysql` / `mariadb`
[ ] …
-
# Problem
Keep getting `ER_PARSE_ERROR` when running queries against a MySQL 5.6 database because the Node `mysql` driver fails to expand the value placeholders, so a query written like this (passi…
-
The System runs in Private Cloud and in the test environment I have no problem, but in the production environment at times the Insert duplicates the information generating the same record but as subse…
-
## What you are doing?
```js
'use strict';
/** @type {import('sequelize-cli').Migration} */
module.exports = {
async up(queryInterface, Sequelize) {
await queryInterface.re…
-
Given this extremely simple example:
```python
source_engine = create_async_engine(
f"mysql+asyncmy://{user}:{password}@{host}:{port}/{database}?charset=utf8",
echo=True)
handled_rows…
-
yes , i have followed these steps :
1) i have created a empty database in mysql
2) import sql dumb files one-by-one
3) ran v8 directus project and got user auth token by api
4) ran v9 new fr…
-
There are four transaction isolation levels in SQL language and most of database support them. But I can't find how to set isolation level for transactions in sqlx.
Is it a missing feature?
tuxzz updated
1 month ago
-
I am running a MySQL subvolume backup, and must lock the database for `run` command duration.
Unfortunately, as database size increases, `run` is now taking 2 minutes and locked database is becomin…