SQLite Add Space After Commands

Go To StackoverFlow.com

0

Is there a way to automate adding a new line or two after each SQLite command I run in a prompt? I don't like having walls of unorganized commands and I have problems differentiating the actual commands with the end of each output. Can they be separately colored? I'm using a Windows Batch file, so I doubt it.

Thanks.

2012-04-04 05:47
by Virux


0

I'm not sure how you're executing your commands, but you should be able to add some 'line breaks' by adding SELECT ''; in between SQL commands. This doesn't really work if you're outputting column headers though!

In Batch, if you're returning to the command line after each command, then use echo. to print a blank line.

2012-11-29 18:11
by CJxD
Ads