Welcome to Apnea Board !
As a guest, you are limited to certain areas of the board and there are some features you can't use.
To post a message, you must create a free account using a valid email address.
Login or Create an Account
Machine: Löwenstein prismaSMART max Mask Type: Full face mask Mask Make & Model: unsure Humidifier: Löwenstein prismaAQUA CPAP Pressure: 10 - 12 CPAP Software: OSCAR
Other Software
Sometime in 2024, I researched how to open the binary file from the Viatom O2 Ring in SQLite. Somewhere, somehow in this forum, I came across a post that included the password, but I can’t find it anymore. Does anyone know what the password is to open the binary file in SQLite?
Unless it has recently changed, there is no password. There are 2 different database names easily accessed by standard SQL commands. I have listed them below for each database that is used.
Code:
for filename in `sqlite3 ./PlusebitO2.db 'select mFileName from sleepData'`; do echo $filename;
(sqlite3 PlusebitO2.db "select quote(dataBuf) from sleepData where mFileName = '$filename'" | cut -d\' -f2 | xxd -r -p > $filename); done
Code:
for filename in `sqlite3 ./db_o2.db 'select checktime from tb_check'`; do
echo $filename; (sqlite3 db_o2.db "select quote(checktime) from tb_check where checktime = '$filename'" | cut -d\' -f2 | xxd -r -p > $filename); done
INFORMATION ON APNEA BOARD FORUMS OR ON APNEABOARD.COM SHOULD NOT BE CONSIDERED AS MEDICAL ADVICE. ALWAYS SEEK THE ADVICE OF A PHYSICIAN BEFORE SEEKING TREATMENT FOR MEDICAL CONDITIONS, INCLUDING SLEEP APNEA. INFORMATION POSTED ON THE APNEA BOARD WEB SITE AND FORUMS ARE PERSONAL OPINION ONLY AND NOT NECESSARILY A STATEMENT OF FACT.
Machine: Löwenstein prismaSMART max Mask Type: Full face mask Mask Make & Model: unsure Humidifier: Löwenstein prismaAQUA CPAP Pressure: 10 - 12 CPAP Software: OSCAR
Other Software
I´m not too familiar with this. Look at the attached file (normally unzipped file). This is the binary file I can download from ViHealth and if I try to open it in DB Browser for SQLite, the attached window appears ...
That is a binary data file (20250325234058) that began recording on March 25, 2025, at 11:40:58PM. The actual database will have a ".db" suffix. The 2 database names that I'm aware of are db_o2.db and PlusebitO2.db.
- Red
INFORMATION ON APNEA BOARD FORUMS OR ON APNEABOARD.COM SHOULD NOT BE CONSIDERED AS MEDICAL ADVICE. ALWAYS SEEK THE ADVICE OF A PHYSICIAN BEFORE SEEKING TREATMENT FOR MEDICAL CONDITIONS, INCLUDING SLEEP APNEA. INFORMATION POSTED ON THE APNEA BOARD WEB SITE AND FORUMS ARE PERSONAL OPINION ONLY AND NOT NECESSARILY A STATEMENT OF FACT.
Machine: Löwenstein prismaSMART max Mask Type: Full face mask Mask Make & Model: unsure Humidifier: Löwenstein prismaAQUA CPAP Pressure: 10 - 12 CPAP Software: OSCAR
Other Software
This binary file is what ViHealth exports and is accepted and imported by OSCAR as input for the SpO2 data. This is the normal daily process – click the 'Import Viatom/Wellue Data' menu item in OSCAR, select this binary file, and OSCAR then reads and displays the data.
I therefore suspect that the binary file needs to be decoded first or something. In any case, when I try to open it in DB Browser for SQLite, the window shown in the last post appears and asks for a password.
I'm somewhat perplexed – where else could the .db files be?
INFORMATION ON APNEA BOARD FORUMS OR ON APNEABOARD.COM SHOULD NOT BE CONSIDERED AS MEDICAL ADVICE. ALWAYS SEEK THE ADVICE OF A PHYSICIAN BEFORE SEEKING TREATMENT FOR MEDICAL CONDITIONS, INCLUDING SLEEP APNEA. INFORMATION POSTED ON THE APNEA BOARD WEB SITE AND FORUMS ARE PERSONAL OPINION ONLY AND NOT NECESSARILY A STATEMENT OF FACT.
INFORMATION ON APNEA BOARD FORUMS OR ON APNEABOARD.COM SHOULD NOT BE CONSIDERED AS MEDICAL ADVICE. ALWAYS SEEK THE ADVICE OF A PHYSICIAN BEFORE SEEKING TREATMENT FOR MEDICAL CONDITIONS, INCLUDING SLEEP APNEA. INFORMATION POSTED ON THE APNEA BOARD WEB SITE AND FORUMS ARE PERSONAL OPINION ONLY AND NOT NECESSARILY A STATEMENT OF FACT.
Machine: Löwenstein prismaSMART max Mask Type: Full face mask Mask Make & Model: unsure Humidifier: Löwenstein prismaAQUA CPAP Pressure: 10 - 12 CPAP Software: OSCAR
Other Software