inukshuk / sqleton

Visualize your SQLite database schema
GNU General Public License v3.0
110 stars 12 forks source link

reduce writes #10

Closed coutar-a closed 3 years ago

coutar-a commented 3 years ago

Attempting to generate a viz of my database schema would fail every time, as most attempts to write to the filestream would fail (presumably because each chunk was too large to be written before the next call). This PR works around this issue by writing the entire schema at once.

I also merged the two for loops, as they seemed to be redundant.

inukshuk commented 3 years ago

Thanks!