powershell PowerShell:连接到SQLite数据库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell PowerShell:连接到SQLite数据库相关的知识,希望对你有一定的参考价值。

Add-Type -Path "$PSScriptRoot\System.Data.SQLite.dll"

$DataSource = "$PSScriptRoot\[sqlite_database_file]]"
$CommandText = "select * from mytable"

$SQLiteConnection = New-Object System.Data.SQLite.SQLiteConnection
$SQLiteConnection.ConnectionString = "DataSource=$DataSource"
$SQLiteConnection.Open()

$SQLiteCommand = $SQLiteConnection.CreateCommand()
$SQLiteCommand.CommandText = $CommandText

$SQLiteDataAdapter = New-Object System.Data.SQLite.SQLiteDataAdapter
$SQLiteDataAdapter.SelectCommand = $SQLiteCommand

$DataTable = New-Object System.Data.DataTable
[void]$SQLiteDataAdapter.Fill($DataTable)
$SQLiteConnection.Close()
$DataTable

以上是关于powershell PowerShell:连接到SQLite数据库的主要内容,如果未能解决你的问题,请参考以下文章

powershell MS SQL Powershell连接到SQL Server

通过 PowerShell 连接到 SQL

为啥从 powershell 命令行连接到 github 时出错?

powershell 自动连接到RDP客户端

如何通过 Powershell 和 PSSessionConfiguration 远程连接到 Exchange 服务器

如何在powershell的任务调度程序中设置触发器“连接到用户会话”?