mysql-to-sqlite3
mysql-to-sqlite3 copied to clipboard
Transfer data from MySQL to SQLite
I wanted to connect to mysqld via a UNIX socket rather than IP, so I added an option. Hope this looks ok.
I'm neither a python nor SQL person. Having said that I find it a bit weird that currently the script is creating a real table for all the views and...
``` temp_log="$(mktemp /tmp/xbackup.XXXXXX)" exec 2>>"$temp_log" docker exec nextclouddb /bin/bash -c "mysql2sqlite -V -f /var/lib/mysql/backub.db -d mariadb -u user --mysql-password 12345 docker exec freshrssdb /bin/bash -c "mysql2sqlite -V -f /var/lib/mysql/backub.db -d...
# Pull Request: Add MySQL SSL Options ## Description This pull request adds support for MySQL SSL options (`--mysql-ssl-cert`, `--mysql-ssl-key`, `--mysql-ssl-ca`), that allow users to specify the paths to SSL...
Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 8.0.2 to 8.1.3. Release notes Sourced from sphinx's releases. Sphinx 8.1.3 Changelog: https://www.sphinx-doc.org/en/master/changes.html Bugs fixed #13013: Restore support for cut_lines() with no object type. Patch by Adam...
This pull request introduces enhancements to the MySQL-to-SQLite data transfer process, focusing on foreign key handling, schema metadata extraction, and table creation order computation. Additionally, unit tests have been expanded...
Hi, Thanks for putting together this tool for the general public. I have been trying it out on a few databases that contain tables with foreign-key constraints. This always failed...
**Describe the bug** Table with that definition cause exception: ```sql CREATE TABLE `test` ( `test` text NOT NULL DEFAULT '[]' ) ENGINE=InnoDB; ``` **Expected behaviour** Successful table creation **Actual result**...