Convert SQLite database to MySQL database

Source: Internet
Author: User
Tags create index sqlite sqlite database

SQLite tools I use the SQLiteStudio2.1.5 http://sqlitestudio.pl/?act=download

Sqlitestudio Open database file, click Tools-"Export, database, format Select SQL, export format options" selection

Use the SQL formatter to format exported SQL statements

After exporting the file inside

At the beginning, if there

PRAGMA Foreign_keys = off;
BEGIN TRANSACTION;

Need to remove

Another autoincrement needs to be removed,

At the end if there


COMMIT TRANSACTION;
PRAGMA Foreign_keys = on;

Also need to be removed,

CREATE INDEX django_session_de54fa62 on Django_session (
"Expire_date"
);

The inside of the double quotes to be removed, and then into MySQL, import can.

Convert SQLite database to MySQL database

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.