Table creation/Postal addresses: Difference between revisions

Content added Content deleted
Line 763: Line 763:


## View the data
## View the data
Invoke-SqliteQuery -DataSource $DataSource -Query "SELECT * FROM SSADDRESS"
Invoke-SqliteQuery -DataSource $DataSource -Query "SELECT * FROM SSADDRESS" | FormatTable -AutoSize
</lang>
</lang>
{{Out}}
<pre>
Id LastName FirstName Address City State Zip
-- -------- --------- ------- ---- ----- ---
1 Monster Cookie 666 Sesame St Holywood CA 90013
</pre>


=={{header|Python}}+SQLite==
=={{header|Python}}+SQLite==