InvokeSQLiteQuery.dll-Help.xml
<?xml version="1.0" encoding="utf-8"?> <helpItems xmlns="http://msh" schema="maml"> <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> <command:details> <command:name>Invoke-SQLiteQuery</command:name> <maml:description> <maml:para>Invoke a SQLite query to your SQLite database</maml:para> </maml:description> <command:verb>Invoke</command:verb> <command:noun>SQLiteQuery</command:noun> </command:details> <maml:description> <maml:para>Invoke a SQLite query to your SQLite database</maml:para> </maml:description> <command:syntax> <command:syntaxItem> <maml:name>Invoke-SQLiteQuery</maml:name> <command:parameter required="true" position="1" > <maml:name>Database</maml:name> <command:parameterValue required="true">String</command:parameterValue> </command:parameter> <command:parameter required="true" position="2" > <maml:name>Query</maml:name> <command:parameterValue required="true">String</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" pipelineInput="true (ByValue)" position="1" > <maml:name>Database</maml:name> <maml:description> <maml:para>Path to your database</maml:para> </maml:description> </command:parameter> <command:parameter required="true" pipelineInput="true (ByValue)" position="2" > <maml:name>Query</maml:name> <maml:description> <maml:para>Your SQL query</maml:para> </maml:description> </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> </dev:type> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> </dev:type> </command:returnValue> </command:returnValues> <command:examples> <command:example> <maml:title>-------------------------- EXAMPLE 1 --------------------------</maml:title> <dev:code>Invoke-SQLiteQuery -Database "$HOME/SampleDB.sqlite" -Query (Get-Content "$HOME/SampleDB.sql" | Out-String)</dev:code> <dev:remarks> <maml:para>Invoke a SQLite query.</maml:para> <maml:para></maml:para> </dev:remarks> </command:example> <command:example> <maml:title>-------------------------- EXAMPLE 2 --------------------------</maml:title> <dev:code>Invoke-SQLiteQuery -Database "$HOME/SampleDB.sqlite" -Query "SELECT name FROM sqlite_master WHERE type='table'"</dev:code> <dev:remarks> <maml:para>Query SQLITE_MASTER table with SELECT statement.</maml:para> <maml:para></maml:para> </dev:remarks> </command:example> <command:example> <maml:title>-------------------------- EXAMPLE 3 --------------------------</maml:title> <dev:code>Invoke-SQLiteQuery -Database "C:\Users\Public\Downloads\Chinook_Sqlite.sqlite" -Query "SELECT AlbumId, Title, ArtistId FROM Album ORDER BY title LIMIT 10;" | ForEach-Object { $_ -join ','} | Out-File .\myfile.csv</dev:code> <dev:remarks> <maml:para>Save result of a query of the Chinook database to a CSV file.</maml:para> </dev:remarks> </command:example> </command:examples> <maml:relatedLinks> <maml:navigationLink> <maml:linkText>Project Site:</maml:linkText> <maml:uri>https://github.com/datenteiler/InvokeSQLiteQuery/</maml:uri> </maml:navigationLink> </maml:relatedLinks> </command:command> </helpItems> |