Invoke-GoogleSheets Cmdlet
Searches and updates Google Sheets data.
Syntax
Invoke-GoogleSheets [parameters]
Remarks
The Invoke-GoogleSheets cmdlet allows you to use SQL statements to execute any SQL statement directly. Below is the syntax for a parameterized query:
$query = Invoke-GoogleSheets -Connection $connection -Query 'SELECT * FROM Spreadsheet1_Sheet1 WHERE Column2=@Column2' -Params @{'@Column2'='Bob'}This cmdlet is also useful for executing stored procedures. Use the EXEC keyword to call a stored procedure:
$query = Invoke-GoogleSheets -Connection $connection -Query 'EXEC DownloadDocument Id = @Id' -Params @{"7"}To pass multiple Params parameters, use a semicolon (;) as a delimiter. The code below outlines the structure of an EXEC command with two parameters (param1 and param2):
$query = Invoke-GoogleSheets -Connection $connection -Query 'EXEC MyStoredProc Input1=@param1, Input2=@param2' -Params @{'@param1' = 'value1'; '@param2' = 'value2'}