mysql2sqlite.sh自动

原MySQl Tbl_driver

delimiter $$

CREATE TABLE `tbl_driver` (
  `_id` int(11) NOT NULL AUTO_INCREMENT,
  `Driver_Code` varchar(45) NOT NULL,
  `Driver_Name` varchar(45) NOT NULL,
  `AddBy_ID` int(11) NOT NULL,
  PRIMARY KEY (`_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1$$

mysql2sqlite.sh

#!/bin/sh

# Converts a mysqldump file into a Sqlite 3 compatible file. It also extracts the MySQL `KEY xxxxx` from the
# CREATE block and create them in separate commands _after_ all the INSERTs.

# Awk is choosen because it's fast and portable. You can use gawk, original awk or even the lightning fast mawk.
# The mysqldump file is traversed only once.

# Usage: $ ./mysql2sqlite mysqldump-opts db-name | sqlite3 database.sqlite
# Example: $ ./mysql2sqlite --no-data -u root -pMySecretPassWord myDbase | sqlite3 database.sqlite

# Thanks to and @artemyk and @gkuenning for their nice tweaks.

mysqldump  --compatible=ansi --skip-extended-insert --compact  "$@" | 

awk '

BEGIN {
    FS=",$"
    print "PRAGMA synchronous = OFF;"
    print "PRAGMA journal_mode = MEMORY;"
    print "BEGIN TRANSACTION;"
}

# CREATE TRIGGER statements have funny commenting.  Remember we are in trigger.
/^/*.*CREATE.*TRIGGER/ {
    gsub( /^.*TRIGGER/, "CREATE TRIGGER" )
    print
    inTrigger = 1
    next
}

# The end of CREATE TRIGGER has a stray comment terminator
/END */;;/ { gsub( /*//, "" ); print; inTrigger = 0; next }

# The rest of triggers just get passed through
inTrigger != 0 { print; next }

# Skip other comments
/^/*/ { next }

# Print all `INSERT` lines. The single quotes are protected by another single quote.
/INSERT/ {
    gsub( /47/, "4747" )
    gsub(/n/, "n")
    gsub(/r/, "r")
    gsub(/"/, """)
    gsub(/\/, "")
    gsub(/32/, "32")
    print
    next
}

# Print the `CREATE` line as is and capture the table name.
/^CREATE/ {
    print
    if ( match( $0, /"[^"]+/ ) ) tableName = substr( $0, RSTART+1, RLENGTH-1 ) 
}

# Replace `FULLTEXT KEY` or any other `XXXXX KEY` except PRIMARY by `KEY`
/^  [^"]+KEY/ && !/^  PRIMARY KEY/ { gsub( /.+KEY/, "  KEY" ) }

# Get rid of field lengths in KEY lines
/ KEY/ { gsub(/([0-9]+)/, "") }

# Print all fields definition lines except the `KEY` lines.
/^  / && !/^(  KEY|);)/ {
    gsub( /AUTO_INCREMENT|auto_increment/, "" )
    gsub( /(CHARACTER SET|character set) [^ ]+ /, "" )
    gsub( /DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP|default current_timestamp on update current_timestamp/, "" )
    gsub( /(COLLATE|collate) [^ ]+ /, "" )
    gsub(/(ENUM|enum)[^)]+)/, "text ")
    gsub(/(SET|set)([^)]+)/, "text ")
    gsub(/UNSIGNED|unsigned/, "")
    if (prev) print prev ","
    prev = $1
}

# `KEY` lines are extracted from the `CREATE` block and stored in array for later print 
# in a separate `CREATE KEY` command. The index name is prefixed by the table name to 
# avoid a sqlite error for duplicate index name.
/^(  KEY|);)/ {
    if (prev) print prev
    prev=""
    if ($0 == ");"){
        print
    } else {
        if ( match( $0, /"[^"]+/ ) ) indexName = substr( $0, RSTART+1, RLENGTH-1 ) 
        if ( match( $0, /([^()]+/ ) ) indexKey = substr( $0, RSTART+1, RLENGTH-1 ) 
        key[tableName]=key[tableName] "CREATE INDEX "" tableName "_" indexName "" ON "" tableName "" (" indexKey ");n"
    }
}

# Print all `KEY` creation lines.
END {
    for (table in key) printf key[table]
    print "END TRANSACTION;"
}
'
exit 0

当执行这个脚本时,我的sqlite数据库变成这样

Sqlite Tbl_Driver

CREATE TABLE "tbl_driver" (
  "_id" int(11) NOT NULL ,
  "Driver_Code" varchar(45) NOT NULL,
  "Driver_Name" varchar(45) NOT NULL,
  "AddBy_ID" int(11) NOT NULL,
  PRIMARY KEY ("_id")
)

我想改变"_id" int(11) NOT NULL ,
变成这样"_id" int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT,
要么
变成这样"_id" int(11) NOT NULL AUTO_INCREMENT,
用主键也可以

任何想法来修改这个脚本?


AUTO_INCREMENT关键字是特定于MySQL的。

SQLite有一个关键字AUTOINCREMENT (没有下划线),这意味着该列自动生成单调递增的值,这在表格中从未使用过。

如果省略AUTOINCREMENT关键字(如当前显示的脚本),则SQLite会将ROWID分配给新行,这意味着它将比表中当前最大ROWID大1。 如果从表的高端删除行并插入新行,则可以重新使用值。

有关更多详细信息,请参阅http://www.sqlite.org/autoinc.html。

如果你想修改这个脚本来添加AUTOINCREMENT关键字,它看起来像你可以修改这一行:

gsub( /AUTO_INCREMENT|auto_increment/, "" )

为此:

gsub( /AUTO_INCREMENT|auto_increment/, "AUTOINCREMENT" )

重申您的意见:

好吧,我在一个使用sqlite3的虚拟表上尝试了它。

sqlite> create table foo ( 
  i int autoincrement, 
  primary key (i)
);
Error: near "autoincrement": syntax error

显然,SQLite要求autoincrement遵循列级主键约束。 对于将pk约束放在最后的MySQL惯例,它并不满意,因为它是表级约束。 这是CREATE TABLE的SQLite文档中的语法图所支持的。

让我们尝试在autoincrement之前放置primary key

sqlite> create table foo ( 
  i int primary key autoincrement
);
Error: AUTOINCREMENT is only allowed on an INTEGER PRIMARY KEY

显然,SQLite不喜欢“INT”,它更喜欢“INTEGER”:

sqlite> create table foo (
  i integer primary key autoincrement
);
sqlite>

成功!

所以你的awk脚本不能像你想象的那样容易地将MySQL表DDL转换成SQLite。


重申您的意见:

您正在尝试复制一个名为SQL :: Translator的Perl模块的工作,这非常有用。 我不打算为你写一个完整的工作脚本。

为了真正解决这个问题,并创建一个可以自动执行所有语法更改以使DDL与SQLite兼容的脚本,您需要为SQL DDL实现完整的解析器。 在awk中这是不实际的。

我建议您使用脚本来处理关键字替换的一些情况,如果需要进一步更改,请在文本编辑器中手动修复它们。

也考虑做出妥协。 如果重新格式化DDL以使用SQLite中的AUTOINCREMENT功能太困难,请考虑默认的ROWID功能是否足够接近。 阅读我上面发布的链接以了解差异。


我发现了一个奇怪的解决方案,但它适用于PHP Doctrine。

创建一个Mysql数据库。 创建Doctrine 2实体从数据库中,构建所有一致性。

Doctrine 2具有将实体与数据库和修复数据库进行比较以验证实体的功能。

通过mysql2sqlite.sh导出数据库完全符合您的描述。

所以然后你配置doctrine驱动程序来使用sqlite数据库和:

作曲家:

vendor/bin/doctrine-module orm:schema-tool:update --force

它修复了自动增量,无需手动完成。

链接地址: http://www.djcxy.com/p/76459.html

上一篇: mysql2sqlite.sh Auto

下一篇: C# Hooking a Console Application to Notepad