0

我正在使用基于 H2 文件的数据库运行一个小型、简单的 Grails 3.3.0 应用程序。出于简单的备份原因,我想使用 H2 特定的SCRIPT命令将当前数据库状态转储到文件中:

SCRIPT TO /path/to/backup/dir/tempoDb.sql;

目前我正在尝试像这样执行本机 SQL 命令。

User.withSession { session ->

   NativeSQLQuerySpecification nativeSQLQuerySpecification = new NativeSQLQuerySpecification("SCRIPT TO /path/to/backup/dir/tempoDb.sql;", null, null)

   session.executeNativeUpdate(nativeSQLQuerySpecification, new QueryParameters())
}

但这不起作用。

4

1 回答 1

1

您可以自动连接dataSource并尝试使用从数据源获得的连接运行您的 sql 查询,而无需通过 Hibernate。bean 在 Grails Spring 上下文中注册,dataSource它是javax.sql.DataSource.

这是一个将当前 H2 数据库备份到文件系统的 Grails 服务示例。

@ReadOnly
class BackupService {

    DataSource dataSource

    def backup() {

        def sql = "SCRIPT DROP TO '${System.properties['java.io.tmpdir']}/backup.sql'"

        Statement statement = dataSource.connection.createStatement()
        boolean result = statement.execute(sql)
    }
}
于 2017-08-05T09:07:48.410 回答