Skip to content
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

cant open the database in esp8266 sqlite3 #4

Closed
kabilramar opened this issue Apr 27, 2019 · 13 comments
Closed

cant open the database in esp8266 sqlite3 #4

kabilramar opened this issue Apr 27, 2019 · 13 comments

Comments

@kabilramar
Copy link

I have copied the databases mdr512.db census2000names.db and placed inside the folder data.
When I run the program sqlite3_sdfat it throws the error Can't open database: Unable to open database".

What may be the reason for that. Why it throws after I copied the database from the Github

@siara-cc
Copy link
Owner

siara-cc commented Apr 27, 2019

If you are trying sdfat example, you need to manually copy the files to SD Card (to root folder).
Please see the comments written on top of the example ino file.

@siara-cc
Copy link
Owner

There are many limitations in using Sqlite db with ESP8266 especially because of RAM. Also stack size to be increased. Please see README.md of this repo.

@kabilramar
Copy link
Author

I created a folder named data in the sd card and I manually copied the db files into the folder named data.

@kabilramar
Copy link
Author

This is the free space available information in mu arduino ide after sqlite_sdfat program was compiled.

Sketch uses 522648 bytes (50%) of program storage space. Maximum is 1044464 bytes.
Global variables use 47668 bytes (58%) of dynamic memory, leaving 34252 bytes for local variables. Maximum is 81920 bytes.

@kabilramar
Copy link
Author

I also created a folder named FLASH in the sd card and I manually copied the .db files (mdr512.db census2000names.db) into the folder named FLASH.

@siara-cc
Copy link
Owner

The db files are to be copied to root folder. I will mention it in the doc.
As for RAM, I was just pointing out because you may face a lot of problems when trying to write your own code. The examples work fine because they are specifically designed to consume less RAM.

@kabilramar
Copy link
Author

Sir,

In the sqlite_sdfat program it was mentioned as" Before running please copy following files to SD Card:
data/mdr.db". So I copied the files inside the folder named data.

                           What is the root folder indicates in SD card.   

@kabilramar
Copy link
Author

I am trying out the examples which you have uploaded like sqlite_sdfat,sqlite_smalldb.

@siara-cc
Copy link
Owner

Please don't copy the files to any folder. Just copy it to the main directory. It is also called root folder. If your SD Card is drive F, then use copy data\mdr.db F:\.

I understood the confusion. Usually, the SPIFFS utility for ESP8266 copies the files in data folder to the root of SPIFFS. Thats why I did not mention it specifically. Now I will.

@kabilramar
Copy link
Author

Sir,
Is it necessary to increase the stack size in cores/esp8266/cont.h to at least 6144 (from 4096) when I run the examples program (sqlite3_sdfat)?. What is the reason to do that?

I am connecting the NODEMCU and Micro SD Card in the following Pin Correction. Is it right?

NODEMCU MICRO SD
VIN VCC
GND GND
D8 CS
D5 SCK
D6 MISO
D7 MOSI

@kabilramar
Copy link
Author

arun ji are the connections mentioned above is correct??

@siara-cc
Copy link
Owner

I am not sure about NodeMCU. Please refer to their documentation.
Also see #5 (comment)

@siara-cc
Copy link
Owner

if the connections are different, you may have to change the code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants