i am looking for sharepoint caml query builder function which could take input as field/value/operator/condition and return caml query string with both combinations (AND/OR)
check out these tools
http://www.codeproject.com/Articles/458008/CAML-Query-Builder
http://spcamlviewer.codeplex.com/
http://spcamlqueryhelper.codeplex.com/
hope it helps :) .
The U2U tool link seems to be broken now:
I've found this instead:
About: http://www.sjoukjezaal.com/blog/tool-sharepoint-developers-caml-designer/
Download:
http://sharepoint.biwug.be/SitePages/Caml_Designer.aspx
For C#, check out Camlex.NET: http://camlex.codeplex.com/
Related
I would like to use the Fishbase-API in my app.
https://fishbase.ropensci.org/
here is the README for the API...
https://fishbaseapi.readme.io/reference/getting-started
But I don't know how to create a correct query to search for certain “common names” (comnames) and get a list of results?
Thanks a lot!
How can I apply the win8nl DragFlickBehavior for a grid in code behind?
Any help will really appreciated.
Thanks in advance
I got the solution
Win8nl.Behaviors.DragFlickBehavior behaviour = new DragFlickBehavior();
WinRtBehaviors.Interaction.GetBehaviors(grdNew).Add(behaviour);
Behaviours are currently not supported on Win8Dev. Have a look at
http://winrtbehaviors.codeplex.com/
This post by the author shows how to use implement it
http://dotnetbyexample.blogspot.co.uk/2012/03/attached-behaviors-for-windows-8-metro.html
How can we take data from sql with a sql request like "SELECT * FROM ..." to an arraylist (more precise in a listview or a autocompletetext or a spinner).
i suggest you take a look at the NotepadDemo here
there they use a SimpleCursorAdapter to build a ListView
cheers
new to struts i try to get database connection using datasource. any one tell me how to use getdatasource(request) method in struts...give me some example
Thanks in Advance
Regards
Mouli V
Here are some examples from the net
http://www.javabeat.net/articles/24-introduction-to-struts-actions-3.html
http://www.jaxmag.com/itr/online_artikel/psecom,id,616,nodeid,147.html
http://struts.apache.org/1.1/faqs/database.html
How do you programmatically add an SSIS ForEachLoop?
We are limited to SQL Server 2005.
I'm having trouble adding the following properties:
ForEachEnumerator
CollectionEnumerator
Directory
FileNameRetrieval
FileSpec
Recurse
My code format looks like this:
Microsoft.SqlServer.Dts.Runtime.Executable executable = aSequence[0].Executables.Add("STOCK:ForEachLoop");
((Microsoft.SqlServer.Dts.Runtime.ForEachLoop) executable).Name = "a for each loop";
Thanks for any help in advance.
Please take a look at this MSDN sample
http://msdn.microsoft.com/en-us/library/microsoft.sqlserver.dts.runtime.foreachloop.foreachenumerator.aspx
It configures For Each Item enumerator, but can be easily adoped for others