File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change
1
+ # 2.3.2
2
+
3
+ * [ FIX] fix --mysql-insert-method
4
+ * [ FIX] modify the existing ` check_mysql_json_support ` and ` check_mysql_fulltext_support ` to improve detection of
5
+ MariaDB versions
6
+ * [ FIX] fix connecting with empty MySQL password
7
+
1
8
# 2.3.1
2
9
3
10
* [ FIX] fix conversion of SQLite ` NUMERIC ` data type with precision and scale to MySQL ` DECIMAL ` with precision and
Original file line number Diff line number Diff line change @@ -32,8 +32,6 @@ sqlite3mysql --help
32
32
```
33
33
Usage: sqlite3mysql [OPTIONS]
34
34
35
- sqlite3mysql version 2.1.10 Copyright (c) 2018-2024 Klemen Tusar
36
-
37
35
Options:
38
36
-f, --sqlite-file PATH SQLite3 database file [required]
39
37
-t, --sqlite-tables TUPLE Transfer only these specific tables (space
@@ -103,7 +101,8 @@ docker run -it \
103
101
This will mount your host current working directory (pwd) inside the Docker container as the current working directory.
104
102
Any files Docker would write to the current working directory are written to the host directory where you did docker
105
103
run. Note that you have to also use a
106
- [ special hostname] ( https://docs.docker.com/desktop/networking/#use-cases-and-workarounds-for-all-platforms ) ` host.docker.internal `
104
+ [ special hostname] ( https://docs.docker.com/desktop/networking/#use-cases-and-workarounds-for-all-platforms )
105
+ ` host.docker.internal `
107
106
to access your host machine from inside the Docker container.
108
107
109
108
#### Homebrew
Original file line number Diff line number Diff line change 1
1
"""Utility to transfer data from SQLite 3 to MySQL."""
2
2
3
- __version__ = "2.3.1 "
3
+ __version__ = "2.3.2 "
4
4
5
5
from .transporter import SQLite3toMySQL
You can’t perform that action at this time.
0 commit comments