Login / Register  search  syndication  about

          George Jensen's Blog

George Jensen on Reporting, Business Intelligence, Crystal Reports, Visual Analyzer, and more.

Running a SQL Update Statement from Saleslogix Web

I am working for a client who would like a button to set all of the records in a table to either "Valid" or "" (blank).  This then allows them to build groups on what records needs to be updated.  I started my adventure by reading Kris Halsrud's post Retrieving the Manager in SalesLogix 7.5 Web .   The solution Kris outlines provided most of what I needed and direct conversation with Kris himself provided the rest.  I wanted to document it here so I do not have to bug him the next time I need to do this.

This is what our C# Snippet Action item looks like launched from the button.

Sage.Platform.Data.IDataService datasvc = Sage.Platform.Application.ApplicationContext.Current.Services.Get<Sage.Platform.Data.IDataService>();

using (System.Data.OleDb.OleDbConnection conn = new System.Data.OleDb.OleDbConnection(datasvc.GetConnectionString()))

{

conn.Open();

System.Data.OleDb.OleDbCommand cmd =
new System.Data.OleDb.OleDbCommand("update sysdba.TABLE set FIELD = 'Value'",conn);

cmd.ExecuteNonQuery();

}

 

The green text is the slq statement, the rest should be able to be used as is.  I hope this little post helps someone else down the line.

Thanks

Geo

What's This?
  
Bookmark and Share

About George Jensen

   George Jensen is a Senior Developer for Customer FX Corporation.


Related Content
   Demystifying SalesLogix Web: Dashboards and Analytics Tools
Join us for a free webinar, Wednesday, May 15th at 2pm CDT. The SalesLogix Web dashboards and analytics
Posted on May 08, 2013 by Brianna Tinjum to The Inbox
 
   How can I make sure I am logging into the correct SalesLogix web client database?
I just recently did a updated conversion of our production database (which is 6.2x) and I'm trying to
Posted on Apr 15, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
   The SLXOLEDB.1 provider is not registered on the local machine
Ever seen this error before when logging into the SalesLogix web client?  Ofter this is a result of
Posted on Apr 04, 2013 by Kris Halsrud to Kris Halsrud's Blog
 
   Modifying SLX Mobile 2.0 to deploy customizations on a normal App Architect deployment
 In order to have your customizations, that have been added to the SalesLogix Mobile 2.0 client, be
Posted on Mar 27, 2013 by Kris Halsrud to Kris Halsrud's Blog
 
   Is there software or Hardware that works with SalesLogix Web Client that can dial the phone number in order to eliminate manual dials?
Is there software or Hardware that works with SalesLogix Web Client that can dial the phone number in ord
Posted on Mar 04, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
Comments

 

Twitter Trackbacks for Running a SQL Update Statement from Saleslogix Web - George Jensen's Blog [customerfx.com] on Topsy.com said:

Pingback from  Twitter Trackbacks for                 Running a SQL Update Statement from Saleslogix Web - George Jensen's Blog         [customerfx.com]        on Topsy.com

June 23, 2010 4:51 PM
 

Kevin Gillen said:

What about returning a value from a singular field via a select statement ...

Select <fieldname> from <dl_inv_hist_det> where accountid = '<accountID value>' and product_id = '<actual_ID>' value

January 22, 2011 6:44 AM

Leave a Comment

(required)  
(optional)
(required)  
Add
All contents Copyright © 2013 Customer FX Corporation
Customer FX Corporation
2324 University Avenue West, Suite 115
Saint Paul, Minnesota 55114
Tel: 800.728.5783

  Follow @CustomerFX on twitter
Follow the best news, tips, and articles
  Subscribe to Customer FX on youtube
Watch SalesLogix tutorial videos from Customer FX
Login / Register