InvokeQueryPowershellModule icon indicating copy to clipboard operation
InvokeQueryPowershellModule copied to clipboard

A Powershell module of Cmdlets for querying most types of databases.

Results 9 InvokeQueryPowershellModule issues
Sort by recently updated
recently updated
newest added

Hi When running the New-SqliteDatabase command the following error is given: New-SqliteDatabase : Unable to load DLL 'SQLite.Interop.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E). This...

bug

How to make connection to firebird database

How does it work? ``` $db = 'c:\Users\gebruiker\AppData\Roaming\Mozilla\Firefox\Profiles\ptk96eju.default-1565324776760514\places.sqlite' $sql = "SELECT * FROM moz_bookmarks;" Invoke-SqliteQuery -Sql $sql -Database $db -Verbose ``` : ``` VERBOSE: Using the following connection string: Data...

I would like the ability to choose the port to connect to. I use local and remote MySQL databases through a jump box (bastion host, passthrough, etc), and I have...

Howdy. I've run into a problem on a MySQL server I'd like to use invoke-mysqlquery for. Using a login that involves a semicolon or backtick appears to cause errors. On...

Invoke-PostgreSqlQuery -Credential $Credential -Server $Server -Database $DB -Sql $QueryStr; Invoke-PostgreSqlQuery : Keyword not supported: data source Parameter name: keyword At line:1 char:1 + Invoke-PostgreSqlQuery -Credential $Credential -Server $Server -Datab ......

We are trying to access a postgress database from powershell (7.3) as follows: $server= $db = $table = $user= $pwd= $connectionString = "Host=$server;Username=$user;Password=$pwd;Database=$db"; $query ="select * from $table" $results =...

unfortunately it doesn't work in powershell under linux environment. Error: Socket.IOControl handles Windows-specific control codes and is not supported on this platform