Cmdlets for SuiteCRM

Build 22.0.8462

Invoke-SuiteCRM Cmdlet

Parameters   Output Objects  

Searches and updates SuiteCRM data.

Syntax

Invoke-SuiteCRM [parameters]

Remarks

The Invoke-SuiteCRM cmdlet allows you to use SQL statements to execute any SQL statement directly. Below is the syntax for a parameterized query:

$query = Invoke-SuiteCRM -Connection $connection -Query 'SELECT * FROM Accounts WHERE Industry=@Industry' -Params @{'@Industry'='Manufacturing'}
This cmdlet is also useful for executing stored procedures. Use the EXEC keyword to call a stored procedure:
$query = Invoke-SuiteCRM -Connection $connection -Query 'EXEC StoredProc Input1 = @Input1' -Params @{"Value1"}
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-SuiteCRM -Connection $connection -Query 'EXEC MyStoredProc Input1=@param1, Input2=@param2' -Params @{'@param1' = 'value1'; '@param2' = 'value2'}

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462