电子和续集错误:不支持方言sqlite

时间:2015-09-06 11:34:29

标签: node.js sequelize.js electron

我尝试在桌面应用程序中使用sequelize和sqlite与electron但在通过Date Balance 1/1/15 2500.00 1/2/15 2550.00 1/3/15 2500.00 1/4/15 2800.00 1/5/15 2800.00 1/6/15 2800.00 1/7/15 2800.00 1/8/15 1900.00 (运行npm start运行应用时遇到以下错误}):

  

未捕获错误:不支持方言sqlite。 (错误:请手动安装sqlite3包)

我已经使用node_modules/.bin/electron .安装了sequelize和sqlite。当我通过npm install --save sequelize sqlite直接运行模型文件时,一切正常:

node models.js

所以这个问题特别适用于使用电子续集。所有文件如下所示。

的package.json

$ node models.js
Executing (default): CREATE TABLE IF NOT EXISTS `Users` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `username` VARCHAR(255), `birthday` DATETIME, `createdAt` DATETIME NOT NULL, `updatedAt` DATETIME NOT NULL);
Executing (default): PRAGMA INDEX_LIST(`Users`)
Executing (default): INSERT INTO `Users` (`id`,`username`,`birthday`,`updatedAt`,`createdAt`) VALUES (NULL,'janedoe','1980-07-19 22:00:00.000 +00:00','2015-09-06 11:18:52.412 +00:00','2015-09-06 11:18:52.412 +00:00');
{ id: 1,
  username: 'janedoe',
  birthday: Sun Jul 20 1980 00:00:00 GMT+0200 (CEST),
  updatedAt: Sun Sep 06 2015 13:18:52 GMT+0200 (CEST),
  createdAt: Sun Sep 06 2015 13:18:52 GMT+0200 (CEST) }

app.js

{
  "name": "example",
  "version": "0.0.0",
  "description": "",
  "main": "app.js",
  "scripts": {
    "start": "node_modules/.bin/electron .",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "devDependencies": {
    "electron-prebuilt": "^0.31.1"
  },
  "dependencies": {
    "jquery": "^2.1.4",
    "sequelize": "^3.7.1",
    "sqlite3": "^3.0.10"
  }
}

的index.html

var app = require('app');
var BrowserWindow = require('browser-window');

require('crash-reporter').start();

var mainWindow = null;

app.on('window-all-closed', function() {
    if (process.platform !== 'darwin') {
        app.quit();
    }
});

app.on('ready', function() {
    mainWindow = new BrowserWindow({width: 800, height: 600});
    mainWindow.loadUrl('file://' + __dirname + '/index.html');
    mainWindow.on('closed', function() {
        mainWindow = null;
    });
});

models.js

<!DOCTYPE html>
<html lang="en">
    <head>
        <!-- Required meta tags always come first -->
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta http-equiv="x-ua-compatible" content="ie=edge">
    </head>
    <body>
        <p>Example</p>

        <script src="models.js"></script>
    </body>
</html>

使用var Sequelize = require('sequelize'); var sequelize = new Sequelize('bdgt', 'username', 'password', { dialect: 'sqlite', storage: 'example.db', }); var User = sequelize.define('User', { username: Sequelize.STRING, birthday: Sequelize.DATE }); sequelize.sync().then(function() { return User.create({ username: 'janedoe', birthday: new Date(1980, 6, 20) }); }).then(function(jane) { console.log(jane.get({ plain: true })); }); 安装依赖项,并使用npm install重现问题。正在运行npm start将显示续集作​​品。

4 个答案:

答案 0 :(得分:7)

最后,根据@Josh提供的文章以及其他博客文章和问题讨论,我找到了解决此问题的有效方法。下面我写了我为解决这个问题而采取的所有步骤。 最终解决方案发布在此答案的底部

我按照electron repo中提供的电子教程。

轻松的方式

我已安装electron-rebuild节点包并运行./node_modules/.bin/electron-rebuild,这给了我以下错误:

node-pre-gyp ERR! install error 
node-pre-gyp ERR! stack Error: Unsupported target version: 0.31.2
node-pre-gyp ERR! command "node" "/my/project/dir/node_modules/sqlite3/node_modules/.bin/node-pre-gyp" "install" "--fallback-to-build"
node-pre-gyp ERR! not ok

npm ERR! Failed at the sqlite3@3.0.10 install script 'node-pre-gyp install --fallback-to-build'.
npm ERR! This is most likely a problem with the sqlite3 package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node-pre-gyp install --fallback-to-build

节点-Gyp方式

我已在全局安装了node-gyp模块并输入了./node_modules/sqlite3 dir。然后我尝试运行以下命令:

node-gyp rebuild --target=0.31.2 --arch=x64 --dist-url=https://atom.io/download/atom-shell

并收到以下错误:

gyp: Undefined variable module_name in binding.gyp while trying to load binding.gyp

npm Way

这导致了与The Easy Way相同的结果。

sqlite3 forks

最后我尝试下载了sqlite3 forks中的一些。不幸的结果是一样的。

最终尝试 - 解决方案

@Josh提供的博客文章被我禁止,但我发现了google cached版本。我也跟着讨论了electron issue

下面介绍的步骤可以为您提供一个有效的sqlite3包。

  • 在package.json "electron-prebuilt": "0.29.1"
  • 中更改电子预建的版本
  • 重新安装electron-prebuilt
  • 将目录更改为./node_modules/sqlite3
  • 运行预发布脚本npm run prepublish
  • 配置node-gyp module_name和module_path

    node-gyp configure --module_name=node_sqlite3 --module_path=../lib/binding/node-v44-linux-x64
    
  • 重建包

    node-gyp rebuild --target=0.29.1 --arch=x64 --target_platform=linux --dist-url=https://atom.io/download/atom-shell --module_name=node_sqlite3 --module_path=../lib/binding/node-v44-linux-x64
    

我尝试使用电子预制包的0.31.2版进行编译,但由于某种原因它失败了。

如果您使用mac替换linuxdarwin

如果您的os架构是32位替换x64 ia32

答案 1 :(得分:7)

我知道您安装了sqlite3并且单独工作但是当您尝试将sqlite3electron一起使用时会出现问题。这是因为ABI版本不匹配。

当你放一个

中的

console.log(err);

<project>/node_modules/sequelize/lib/dialects/sqlite/connection-manager.js第21行,

throw new Error('Please install sqlite3 package manually');之前,您会看到如下错误:

{ [Error: Cannot find module '<full_path_to_project>/node_modules/sqlite3/lib/binding/node-v44-linux-x64/node_sqlite3.node'] code: 'MODULE_NOT_FOUND' }

但是,当您检查/node_modules/sqlite3/lib/binding/文件夹时,将没有node-v44-linux-x64文件夹,但会出现node-v11-linux-x64文件夹。 (简单地重命名文件夹将不起作用。)

这种不匹配的发生是因为电子在内部使用io.js v3.1.0,因为它指出here及其ABI版本与您的nodejs版本不匹配。

请注意node-vXX是通过节点的ABI版本决定的。请查看此网址以获取更多信息:https://github.com/mapbox/node-pre-gyp/issues/167

<强>解决方案

此处所述的简单方法https://github.com/atom/electron/blob/master/docs/tutorial/using-native-node-modules.md#the-easy-waysqlite不起作用,但您可以按照以下步骤使其正常工作:

通过以下命令安装electron-rebuild

npm install --save-dev electron-rebuild

转到<project path>/node_modules/sqlite3/node_modules/node-pre-gyp/lib/util/abi_crosswalk.js找到您的节点版本,然后将node_abi值更改为44。如下:

"0.12.7": {
  "node_abi": 44,
  "v8": "3.28"
},

然后给出./node_modules/.bin/electron-rebuild命令并等待一下。然后就行了。

答案 2 :(得分:3)

如果你可以运行$npm list sqlite3并得到像......这样的回复

MyAppName@0.0.1 /path/to/MyApp └── sqlite3@3.0.10

然后问题可能是sqlite3在Electron中没有工作(没有一些强制),而Sequelize也不知道如何表达错误。

请参阅this blog post以使sqlite3在Electron中工作。这应该可以解决Sequelize的问题。

答案 3 :(得分:1)

我多次遇到此错误,对我有用的解决方案是安装electron-rebuild,然后运行:

electron-rebuild -w sqlite3 -p

此处需要-p标志,因为sqlite3使用node-pre-gyp。