-
Notifications
You must be signed in to change notification settings - Fork 0
New SQLiteTable
Marco van Gaal edited this page May 19, 2015
·
13 revisions
New-SQLiteTable
<none>
-------------------------- 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>
http://www.proxx.nl/ http://www.proxx.nl/Wiki/New-SQLiteTable