질문하기질문하기
 

답변됨SPQuery with datetime field

  • 2008년 7월 30일 수요일 오전 6:35prabhukumard 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     
    hi,

          i need to show created, created by and document name into gridview based on created date.

    for ex: I have two textbox one for "from date" and other for "to date" and a button. when user click on the button what are the documents available in document library between the two date. 
    i have tried this way,

    SPQuery oQuery = new SPQuery();
    oQuery.ViewFields = "<FieldRef Name='Created'/>" + "<FieldRef Name='FileLeafRef'/>" + "<FieldRef Name='Author'/>";
    DateTime strFromDate = Convert.ToDateTime(txtFromDate.Text);
    DateTime strToDate = Convert.ToDateTime(txtToDate.Text);
    oQuery.Query = "<Where><FieldRef Name='Created'><Value Type=\"DateTime\" StorageTZ='TRUE'>" + strFromDate + "</Value><FieldRef Name='Created'><Value Type=\"DateTime\" StorageTZ='TRUE'>" + strToDate + "</Value></Where>";
    SPListItemCollection items = splist.GetItems(oQuery);
    DataTable dt = items.GetDataTable();
    return dt;
    i am new to this technology.


    i don't know how to use the spquery for this scenario.

    please anyone can help me.......
    thanks in advace........


     

답변

  • 2008년 7월 30일 수요일 오전 7:03Laxmikant Rathi 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     답변됨코드 있음
     you need to use AND condition and the "less than" and "greater than" operators to get the result:

    your query should look something like this :

    string createdBeforeQuery = "<Leq><FieldRef Name=\'Created\'/><Value Type=\'DateTime\'>" + strToDate.ToString("s") + "</Value></Leq>";  
     
    string createdAfterQuery = "<Geq><FieldRef Name=\'Created\'/><Value Type=\'DateTime\'>" + strFromDate.ToString("s") + "</Value></Geq>";  
     
     
    oQuery.Query = "<Where><And>" + createdBeforeQuery + createdAfterQuery + "</And></Where>"  
     

    at the start comment the oQuery.ViewFields line to be sure that there are no syntax mistakes in it.

    check if this helps..

모든 응답

  • 2008년 7월 30일 수요일 오전 7:03Laxmikant Rathi 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     답변됨코드 있음
     you need to use AND condition and the "less than" and "greater than" operators to get the result:

    your query should look something like this :

    string createdBeforeQuery = "<Leq><FieldRef Name=\'Created\'/><Value Type=\'DateTime\'>" + strToDate.ToString("s") + "</Value></Leq>";  
     
    string createdAfterQuery = "<Geq><FieldRef Name=\'Created\'/><Value Type=\'DateTime\'>" + strFromDate.ToString("s") + "</Value></Geq>";  
     
     
    oQuery.Query = "<Where><And>" + createdBeforeQuery + createdAfterQuery + "</And></Where>"  
     

    at the start comment the oQuery.ViewFields line to be sure that there are no syntax mistakes in it.

    check if this helps..
  • 2008년 7월 30일 수요일 오전 7:10Tobias Zimmergren [MVP]MVP, 중재자사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     제안된 답변
    Hi,

    In order to make sure that your CAML Query works as it should, you can (and in my opinion, you should) test it with the U2U CAML Query Builder: http://www.u2u.info/SharePoint/U2U%20Community%20Tools/Forms/AllItems.aspx

    What this tool does, is generate queries for your automatically and of course lets you try your existing queries.

    If the query is successful in the Query Builder, it should be successfull in your code aswell.
    And as previous posted mentioned, try commenting out the viewfields line to make sure there's no errors in there.

    Regards,
    Tobias Zimmergren
    http://www.zimmergren.net
  • 2008년 7월 30일 수요일 오전 10:16LZandman 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     
    DateTime values have to be converted before you can use them in a CAML query. You can use the SPUtility.CreateISO8601DateTimeFromSystemDateTime() method for this.

    Also check this blog entry if you notice the time part of your DateTime values are ignored.
  • 2008년 7월 31일 목요일 오전 4:13prabhukumard 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     
    hi All,

       Thanks for your response.

    after executing the following code, i am getting "A field or property with the name 'Created' was not found on the selected data source" error.

    SPSite spsite = new SPSite(http://localhost);

    SPWeb spweb = spsite.OpenWeb();

    SPList splist = spweb.Lists["Shared Documents"];

    SPQuery oQuery = new SPQuery();

    DateTime strFromDate = Convert.ToDateTime(txtFromDate.Text);

    DateTime strToDate = Convert.ToDateTime(txtToDate.Text);

    string convertedTime = Microsoft.SharePoint.Utilities.SPUtility.CreateISO8601DateTimeFromSystemDateTime(strFromDate);

    string convertedTime1 = Microsoft.SharePoint.Utilities.SPUtility.CreateISO8601DateTimeFromSystemDateTime(strToDate);

    string Query = @" <Where><And>

    <Leq>

    <FieldRef Name='Created' />

    <Value Type='DateTime'>" + convertedTime1 + @"</Value>

    </Leq>

    <Geq>

    <FieldRef Name='Created' />

    <Value Type='DateTime'>" + convertedTime + @"</Value>

    </Geq>

    </And>

    </Where>";

    oQuery.Query = Query;

    SPListItemCollection items = splist.GetItems(oQuery);


    DataTable dt = items.GetDataTable();

    return dt;

    First Time it was executing fine.
    after that the Created column will be vanished.
    please help me...




     

  • 2008년 8월 1일 금요일 오전 7:15LZandman 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     코드 있음

    I don't see you define any ViewFields in your query. The returned SPListItems only contains fields if you explicitly ask for them.

    Like this:

    public static string BuildViewFieldsXml(params string[] fieldNames)  
    {  
       const string TEMPLATE = @"<FieldRef Name='{0:S}'/>";  
       StringBuilder sb = new StringBuilder();  
       foreach (string fieldName in fieldNames)  
       {  
           sb.AppendFormat(TEMPLATE, fieldName));  
       }  
       return sb.ToString();  
    }  
     
    // Example usage:  
    SPQuery query = new SPQuery();  
    query.ViewFields = BuildViewFieldsXml("Title", "Created", "SomeCustomField");  
    query.Query = ...;  // You know the drill