Skip to content
Marco van Gaal edited this page May 19, 2015 · 13 revisions

NAME

New-SQLiteTable

PARAMETERS

OUTPUTS

<none>

EXAMPLES

-------------------------- EXAMPLE 1 --------------------------
PS C:\>New-SQLiteTable -conn <SQLiteConnection> -InputObject <Object> -Name <TableName>
Create Sqlite Table from InputObject with Name: <TableName>

-------------------------- EXAMPLE 2 --------------------------
PS C:\>New-SQLiteTable -conn <SQLiteConnection> -InputObject <Object> -Name <TableName> -Unique <Unique column>
Create Sqlite Table from InputObject with Name: <TableName> with Column <Unique column> as Unique.

-------------------------- EXAMPLE 3 --------------------------
PS C:\>New-SQLiteTable -conn <SQLiteConnection> -InputObject <Object> -Name <TableName> -WhatIf
Shows what Query would have been processed without really sending to database (Debug).

-------------------------- EXAMPLE 4 --------------------------
PS C:\>$Object | New-SQLiteTable -conn <SQLiteConnection> -Name <TableName>
Create Sqlite Table from Pipeline with Name: <TableName>

RELATED LINKS

http://www.proxx.nl/ http://www.proxx.nl/Wiki/New-SQLiteTable

Clone this wiki locally