Camelot .NET Connector for Microsoft SharePoint

This .NET Framework Class Library is provided by Bendsoft.
The class library is contained in the file Camelot.SharePointConnector.dll.
Coding
Add a reference to the assembly Camelot.SharePointConnector and include the Camelot.SharePointConnector.Data namespace. Instantiate a new SharePointConnection connection object. Set the connection string and open the connection.


VB.NET code sample
Imports Camelot.SharePointConnector.Data
Dim myConnection As SharePointConnection = New SharePointConnection()
myConnection.ConnectionString = myConnectionString
myConnection.Open()
' execute queries, etc
myConnection.Close()


C# code sample
using Camelot.SharePointConnector.Data;
SharePointConnection myConnection = new SharePointConnection();
myConnection.ConnectionString = myConnectionString;
myConnection.Open();
// execute queries, etc
myConnection.Close();


Description
The Camelot .NET Connector lets you easily develop .NET applications that require secure, high-performance data connectivity with SharePoint using standard SQL language. It implements the required ADO.NET interfaces and integrates into ADO.NET aware tools. Developers can build applications using their choice of .NET languages. Besides standard CRUD operations, the Connector supports features that you will not find in any other tool, such as JOIN and UNION. The Connector can be used by any developer with basic SQL knowledge.
More info about this class library can be found at the Bendsoft product page.
Download
.NET Framework Class Library (Camelot .NET Connector for Microsoft SharePoint) can be downloaded here.
Connection Strings
The Camelot .NET Connector for Microsoft SharePoint class library can be used to connect to the following data sources:

SharePoint
To see available connection options, navigate connection strings reference by the above data source links.
Additional info or comments on this class library? Want to submit content?

Popular

Copyright © 2013 30c.org   |   All Rights Reserved   |   Powered by CSAS   |   Send feedback, articles, requests and more connection strings here.