-
-
Notifications
You must be signed in to change notification settings - Fork 828
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Node 6.2.2.: TypeError: undefined is not a function #665
Comments
I couldn't repro this on OS X 10.11.6, with [email protected] and [email protected]. Did you do anything special when installing node-sqlite3? What happens if you remove it from node_modules and reinstall? |
I use preinstalled node-sqlite3 to custom Linux image for Intel Galileo board. Previously there was no problem. I have repeated the same problem with a full recompilations of Linux image with downrgaded packages (Kernel 3.19.8+BusyBox+and so on+NodeJS 6.2.1+SQLite 3.12.1+node-sqlite3 3.1.4). It is strange... |
It seems it is not node-sqlite3 issue. And I close it. quark login: root var sqlite3 = require('sqlite3'); ^Z FROM |
Interesting. I have identified a point where it is crashed: |
My research has led to the nodejs/nan#284 BR, |
So here is the PR: #670
|
Environment:
Node 6.2.2
SQLite3 3.13.0
node-sqlite3 3.1.4
Issue:
Code sample:
sqlite3 works well
root@quark:/usr/lib# sqlite3
SQLite version 3.13.0 2016-05-18 10:57:30
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
sqlite> .open ex1.db
sqlite> create table tbl1(one varchar(10), two smallint);
sqlite> insert into tbl1 values('hello!',10);
sqlite> insert into tbl1 values('goodbye', 20);
sqlite> select * from tbl1;
hello!|10
goodbye|20
sqlite>
BR,
xbolshe
The text was updated successfully, but these errors were encountered: