IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.



#Automation


#Applicationintegration
#webMethods
#Integration
 View Only
  • 1.  No Update information found for query result

    Posted 01/19/05 05:41 PM

    Hi!

    I tried to update tamino data, when there are changes in the dataset with adapter.update(ds,null). But the only message that appears is “No update information found for a query result”. Can anybody tell me, what this message means?
    Thanks in advance


    #webMethods
    #API-Management
    #webMethods-Tamino-XML-Server-APIs


  • 2.  RE: No Update information found for query result

    Posted 01/21/05 09:09 AM

    Is it possible you could provide a stack trace?

    Also could you provide the code that you used to construct the TaminoDataAdapter and Fill.

    Have you read the documentation under:

    Tamino API for .NET Documentation →
    Programming with the Tamino API for .NET →
    Working with Datasets and the TaminoDataAdapter

    especially take note of the Limitations of the DataSet support.


    #API-Management
    #webMethods-Tamino-XML-Server-APIs
    #webMethods


  • 3.  RE: No Update information found for query result

    Posted 01/22/05 02:07 PM

    Thank you Mark for replying.

    Here is the used code:

    Getting Data from Tamino:

    adapter = new TaminoDataAdapter(connection, “AVS”);
    ds = new DataSet();
    adapter.Behavior = TaminoAdapterBehavior.UpdateByItemMapping;
    TaminoQuery query = TaminoXQueryBuilder.BuildXQuery(null, “input()/avs”,
    TaminoAdapterBehavior.UpdateByItemMapping);
    adapter.FillSchema(ds, “AVS”, true);
    adapter.Fill(ds, query);


    dataGridHersteller.DataSource = ds.Tables[“auftrag”].DefaultView;


    Writing Changes in the dataset back to tamino:
    adapter.Update(ds, null);
    ds.AcceptChanges();


    #webMethods
    #API-Management
    #webMethods-Tamino-XML-Server-APIs


  • 4.  RE: No Update information found for query result

    Posted 01/25/05 07:37 AM

    Could you provide the stack trace as it will identify the reason for the failure.


    #API-Management
    #webMethods-Tamino-XML-Server-APIs
    #webMethods