MSDN > 論壇首頁 > SharePoint - Development and Programming > SPQuery with datetime field
發問發問
 

已答覆SPQuery with datetime field

  • 2008年7月30日 上午 06: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日 上午 07: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日 上午 07: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日 上午 07: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日 上午 04: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日 上午 07: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