Im trying to get an output file from a sql database on a .txt file, but all the out puts are on one line, how do i get them on different lines. Below is my code:
This what im getting:
{testing1 read-write {This testing went well.} {} Integer32} {testing2 read-write {This testing went well.} {} Integer32}{testing3 read-write {This testing went well.} {} Integer32}{testing4 read-write {This testing went well.} {} Integer32}
I want this output instead:
{testing1 read-write {This testing went well.} {} Integer32}
{testing2 read-write {This testing went well.} {} Integer32}
{testing3 read-write {This testing went well.} {} Integer32}
{testing4 read-write {This testing went well.} {} Integer32}
Any help will be appreciated, Thanks!
Code:
SELECT name, access, description, number syntax FROM testingresults
WHERE LIKE 'testing%' AND access='read-write'"
This what im getting:
{testing1 read-write {This testing went well.} {} Integer32} {testing2 read-write {This testing went well.} {} Integer32}{testing3 read-write {This testing went well.} {} Integer32}{testing4 read-write {This testing went well.} {} Integer32}
I want this output instead:
{testing1 read-write {This testing went well.} {} Integer32}
{testing2 read-write {This testing went well.} {} Integer32}
{testing3 read-write {This testing went well.} {} Integer32}
{testing4 read-write {This testing went well.} {} Integer32}
Any help will be appreciated, Thanks!