Excel Add-In for SuiteCRM

Build 22.0.8462

Modifying Data

After Connecting from VBA, you are ready to update SuiteCRM from macros. The following sections show how to execute parameterized queries to update data. See Executing Parameterized Queries for a complete macro.

Insert

Call the Insert method to execute SQL INSERT statements.
public bool Insert(string queryString, object paramNames, object paramValues)

The Insert method returns a boolean indicating the success or failure of the statement execution and accepts the following parameters:

queryStringThe query to execute; for example, INSERT INTO Accounts (Industry) VALUES ('Chemicals')
paramNamesAn array with the named parameters used in the query. Required if using a parameterized query.
paramValuesAn array with the values that correspond to the parameter names. Required if using a parameterized query.

The following example inserts the values specified in the parameter arrays and displays a message box indicating the success or failure of the insert.

Dim nameArray
nameArray = Array("Industry", "Industry")
Dim valueArray
valueArray = Array("Manufacturing", "Manufacturing")
Dim module As New ExcelComModule
module.SetProviderName ("SuiteCRM")
module.SetConnectionString ("URL=http://mySuiteCRM.com;User=myUser;Password=myPassword;")
Query = "INSERT INTO Accounts (Industry, Industry) VALUES (@Industry, @Industry)"
If module.Insert(Query, nameArray, valueArray) Then
  MsgBox "The insert was successful."
  'lastInsertedRowIdentity = GetLastInsertedRowIdentity(module)
  'MsgBox lastInsertedRowIdentity
Else
  MsgBox "The insert failed."
End If
module.Close

For a successful insert, and if SCOPE_IDENTITY() is supported by the SuiteCRM provider, then the following VBA function example can be called to retrieve the last inserted row identity.

Function GetLastInsertedRowIdentity(module) As String
  Dim lastInsertedRowIdentity As String
  lastInsertedRowIdentity = ""
  If module.Select("SELECT SCOPE_IDENTITY()", prmNames, prmValues) Then
    lastInsertedRowIdentity = module.GetColumnValue(0)
  End If
  GetLastInsertedRowIdentity = lastInsertedRowIdentity
End Function

Update

Call the Update method to execute SQL UPDATE statements.

public bool Update(string queryString, object paramNames, object paramValues)

The Update method returns a boolean indicating the success or failure of the statement execution and accepts the following parameters:

queryStringThe statement to execute.
paramNamesAn array with the named parameters used in the query. Required if using a parameterized query.
paramValuesAn array with the corresponding parameter values. Required if using a parameterized query.

The following example updates the values specified in the parameter arrays and displays a message box indicating the success or failure of the update.

Dim nameArray
nameArray = Array("Industry", "Industry","Id")
Dim valueArray
valueArray = Array("Manufacturing", "Manufacturing","1")
Dim module As New ExcelComModule
module.SetProviderName ("SuiteCRM")
module.SetConnectionString ("URL=http://mySuiteCRM.com;User=myUser;Password=myPassword;")
Query = "UPDATE Accounts SET Industry=@Industry, Industry=@Industry WHERE Id=@Id
If module.Update(Query, nameArray, valueArray) Then
  MsgBox "The update was successful."
Else
  MsgBox "The update failed."
End If
module.Close

Delete

Call the Delete method to execute SQL DELETE statements.
public bool Delete(string queryString, object paramNames, object paramValues)

The Delete method returns a boolean indicating the query's success or failure and accepts the following parameters:

queryStringThe query to execute; for example, SELECT Name, Industry FROM Accounts WHERE Industry = 'Manufacturing'
paramNamesAn array with the named parameters used in the query. Required if using a parameterized query.
paramValuesAn array with the values that correspond to the parameter names. Required if using a parameterized query.

The following example deletes a record, specified by its key, and displays a message box indicating the success or failure of the delete.

Dim module As New ExcelComModule
module.SetProviderName ("SuiteCRM")
module.SetConnectionString("URL=http://mySuiteCRM.com;User=myUser;Password=myPassword;")
Dim nameArray
nameArray = Array("Id")
Dim valueArray
valueArray = Array("1")
Query = "DELETE FROM Accounts WHERE Id='1'"
If module.Delete(Query,nameArray,valueArray) Then
  MsgBox "The delete was successful."
Else
  MsgBox "The delete failed."
End If 
module.Close

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