ODBC Driver for LinkedIn Marketing Solutions

Build 25.0.9539

Modifying Data

The following code examples show how to use data modification statements.

Procedure for Updates

You can use Exec to execute data modification statements. Exec returns a Result value which contains the number of affected rows.

INSERT

To insert updates:

result, _ := db.Exec("INSERT INTO Analytics (Comment) VALUES ('Access LinkedInAds data with SQL!')")
affected, _ := result.RowsAffected()

UPDATE

To retrieve updates:

result, _ := db.Exec("UPDATE Analytics SET Comment = 'Access LinkedInAds data with SQL!' WHERE VisibilityCode = '238'")
affected, _ := result.RowsAffected()

DELETE

To delete updates:

result, _ := db.Exec("DELETE FROM Analytics WHERE Id = '1'")
affected, _ := result.RowsAffected()

Copyright (c) 2026 CData Software, Inc. - All rights reserved.
Build 25.0.9539