sqlite-viewer-vscode icon indicating copy to clipboard operation
sqlite-viewer-vscode copied to clipboard

A quick and easy SQLite viewer for VSCode, inspired by DBBrowser for SQLite and Airtable.

Results 31 sqlite-viewer-vscode issues
Sort by recently updated
recently updated
newest added

Environment: WSL connection. 1. click the button 'download' ![image](https://github.com/qwtel/sqlite-viewer-vscode/assets/20937135/13022deb-dc27-41b2-b861-cff6f6a7ca85) 2. nothing happened on ui, but some error happens 3. ![image](https://github.com/qwtel/sqlite-viewer-vscode/assets/20937135/df08d2be-0c01-4a41-9356-28058f45da01)

my files are usually stored as .db, it would be great if the sqlite-viewer would support opening the .db files without first renaming them to .sqlite

Great tool! Saves lots of time. I use the terminal to create new .sqlite files in my project folder, however, i could no see anything from the extension. I will...

Thank you for this project! when i clone the project, i get a permission error: `git clone --recurse-submodules -j8 https://github.com/qwtel/sqlite-viewer-vscode.git` ``` Submodule 'sqlite-viewer-app' ([email protected]:qwtel/sqlite-viewer-app.git) registered for path 'sqlite-viewer-app' Cloning into...

how do i activate the extension in vscode

**Version**: v0.14.1 ```python import sqlite3 conn = sqlite3.connect('test.sqlite') conn.execute('''CREATE TABLE Test ( Id INTEGER PRIMARY KEY, "Name." TEXT ) ''') conn.execute('''INSERT INTO Test (Id, "Name.") VALUES (?, ?)''', [1, 'Name1'])...

Foreign key icon does not show if the foreign key name is not the same as the primary key name See example: ``` CREATE TABLE juncMEP( ip_address VARCHAR(15), mep_id INT,...

I'm uncertain whether this is a Gitpod-related problem or an issue with the Extension itself, but it appears that when attempting to utilize it alongside Gitpod, it fails to perform...

From extensions 'RUNTIME STATUS': The first argument must be of type string or an instance of Buffer, ArrayBuffer, or Array or an Array-like Object. Received undefine Example db attached problem...