Skip to content
Marco van Gaal edited this page Aug 5, 2015 · 12 revisions

.NAME

Disconnect-SQLite

.SYNOPSIS

Disconnects from database file

.PARAMETERS

 -Connection <SQLiteConnection>
     
     Required?                    true
     Position?                    1
     Default value                
     Accept pipeline input?       true (ByValue)
     Accept wildcard characters?  false
     
 
 -Dispose [<SwitchParameter>]
     
     Required?                    false
     Position?                    named
     Default value                False
     Accept pipeline input?       false
     Accept wildcard characters?  false

.INPUTS

<SQLiteConnection>

.OUTPUTS

None.

.NOTES

 Author: Proxx
 Web:    www.Proxx.nl 
 Date:    10-06-2015

.EXAMPLES

 -------------------------- EXAMPLE 1 --------------------------
 
 PS C:\>Disconnect-SQLite <System.Data.SQLite.SQLiteConnection>
 
 
 
 
 
 
 
 
 
 -------------------------- EXAMPLE 2 --------------------------
 
 PS C:\>Disconnect-SQLite -Connection <System.Data.SQLite.SQLiteConnection> -Dispose
 
 
 
 Close the connection and disposes the object.
 
 
 
 
 
 -------------------------- EXAMPLE 3 --------------------------
 
 PS C:\><SQLiteConnection> | Disconnect-SQLite

.RELATED LINKS

http://www.proxx.nl/Wiki/Disconnect-SQLite

Clone this wiki locally