Gets an array of all the uploaded tables data in this uploaded transaction.
Public Function GetUploadedTables() As UploadedTableData()
public UploadedTableData[] GetUploadedTables()
An array of uploaded table data. The order of tables in the array is the same as the upload order of the client.
The order to the tables in the array is the same order that MobiLink uses for SQL row handling, and is the optimal order for preventing referential integrity violations. Use this table order if your data source is a relational database.
Assuming that you use a method called HandleUpload for the handle_UploadData synchronization event, the following example uses the GetUploadedTables method to return UploadedTableData instances for the current upload transaction:
// The method used for the handle_UploadData event. public void HandleUpload(UploadData ud) { UploadedTableData[] tables = ud.GetUploadedTables(); //... } |
![]() |
Discuss this page in DocCommentXchange.
|
Copyright © 2010, iAnywhere Solutions, Inc. - SQL Anywhere 12.0.0 |