isaac-mcfadyen / d1-jdbc-driver

A JDBC driver for Cloudflare's D1 product, compatible with Jetbrains tools.
GNU General Public License v3.0
74 stars 5 forks source link

Columns not showing up #1

Open Yrlish opened 2 years ago

Yrlish commented 2 years ago

I added this driver to my WebStorm to be able to look inside my D1 database as I started to develop.

When I got to my second table, no columns was showing up, only one key representing the PK. This also means that all the database references for columns, etc, will be marked as invalid in the code.

I verified that my table was indeed created and correct by running the command wrangler d1 execute DB --command "pragma table_info('table_name')".

The driver is outputting no messages, no errors.

steebchen commented 4 months ago

Yeah it doesn't show any columns except for the primary key (but the primary key is also lacking the type information)

image