SQL Comparison SDK
Latest version: 10.0
Knowledge Base
Running SQL code inside SQL Comparison SDK applications
Category: How do I?
Date: 03 Feb 2011
Product: SQL Comparison SDK
In some cases, you may want to augment the script produced by the SQL Compare or SQL Data Compare API with SQL code that you have written yourself.
SQL Comparison SDK can compare and synchronize schema and data between two instances of SQL Server, however the API is limited to executing the code produced by the API. For instance, an object called BlockExecutor can run the SQL commands contained in an ExecutionBlock object, but it cannot run a SQL statement that you have written yourself.
In order to execute these 'custom' SQL Scripts, the libraries provided by ADO .NET would be the choice for running your own SQL code. In the following example, a SqlCommand object is used to run a SQL command that will create a table in the WidgetStaging database.
- [C#]
- using System.Data.SqlClient;
- ...
- CreateCommand("CREATE TABLE [test](id int, data varchar(50))", "Data Source=localhost;Initial Catalog=WidgetStaging;Integrated Security=SSPI");
- ...
- private static void CreateCommand(string queryString,
- string connectionString)
- {
- using (SqlConnection connection = new SqlConnection(
- connectionString))
- {
- SqlCommand command = new SqlCommand(queryString, connection);
- command.Connection.Open();
- command.ExecuteNonQuery();
- connection.Close();
- }
- }
- [/C#]
Document ID: KB200804000246 Keywords: SQL,SDK,API,Run,SQL,Script
Was this article helpful?
SQL Comparison SDK
- Licenses.licx is not a valid Win32 application
- Application licensing invalidated by renaming assembly
- Excluding a table from a data comparison
- Manually licensing Red Gate assemblies
- RedGate.Licensing.Helper.dll is attempting managed execution inside OS Loader lock
- Troubleshooting SQL Comparison SDK licensing
- SQL Compare synchronization error 'Full-Text Search is not installed'
- Using SQL Data Compare mappings in projects using the API
- Licensing automated builds with NAnt
- Licensing ASP .NET applications
- Running SQL code inside SQL Comparison SDK applications
- Creating an HTML report of schema differences in C#
- Creating a synchronization script without batch markers
- Creating an HTML report of schema differences in Visual Basic .NET
- SQL Toolkit has become SQL Comparison SDK
- SQL Comparison SDK column mapping
- Executing your own SQL queries together with SDK synchronization
- Error 1603 occurring during installation
- Licensing SDK applications in Visual Studio 2010
all SQL products
- Compatibility of Red Gate tools in 64-bit environments
- Application has encountered an error and needs to close
- Error message after installing SQL Toolbelt - The description for Event ID ( 1 ) in Source ( nview_info ) cannot be found.
- Changing the temporary directory used by the installer
- Toolbelt Installer "hanging" while "scanning volumes"
- Login failing with "trusted SQL Server connection" error when using RunAs
all products
- Some Red Gate products identified as containing a trojan by Anti-Virus software
- Activation may fail with Unknown Error -1
- Product uses web help although a CHM file is available locally
- Argument exception resulting from missing environment variable
- Check for updates may fail when used through proxies
- 'Unidentified Publisher' error when repairing or uninstalling
- Licensing activates product as standard edition
- Moving Red Gate software products to another machine
- Red Gate tools log locations
- The application UI opening slowly when there is no internet access
SQL Comparison SDK
all SQL products
all products
- Red Gate product acknowledgements
- Activating your products
- Activating your products
- Red Gate bundle history
- Check for updates
- Troubleshooting Check for Updates errors
- Current versions
- Deactivating your products
- Installing Red Gate products from the .msi file
- Requesting additional activations
- Serial numbers for bundles
- Reactivating using a different serial number
- Extending your trial
- Finding your serial numbers
- Moving a serial number from one computer to another
- No response received for manual activation
- Licensing and activation resources
- Licensing and activation resources
- Troubleshooting licensing and activation errors
- Licensing and activation FAQs
- Red Gate tools log file locations
- Download old versions of products
- Download product prerequisites & utilities
- Support & upgrades
- Upgrading your software
- Upgrading FAQs

Licensing and distribution