jokedst / CsvQuery

Plugin for Notepad++ that treats CSV files as (read only) SQL tables
152 stars 28 forks source link

Show Line Number in Query Results #49

Open yash078 opened 7 months ago

yash078 commented 7 months ago

Request for an option to show the original line number in the CSV file (instead of the sequence row numbers).

jokedst commented 7 months ago

This would be cool, but is messy to implement... There is no good place to store the original row number, except in the table itself. Then it would create a new column that would have to be filtered out everywhere.

I made a branch with some tests, but not entirely happy with the solution.