Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
Dbmlsync 集成组件在 12 版中已删除。可以使用 dbmlsync 编程接口代替该组件。请参见Dbmlsync API。
在其上进行上载或下载操作的表的名称。
Public Property TableName( ) As String Member of DbmlsyncCOM.IRowTransferData
TableName 属性指定在其上进行上载或下载操作的表的名称。以下示例说明在 UploadRow 事件中如何使用 TableName 属性。
请参见UploadRow 事件(已删除)。
下面是一个 Visual Basic .NET 示例。
Private Sub dbmlsync1_UploadRow( ByVal rowData As DbmlsyncCOM.IRowTransferData ) Handles dbmlsync1.UploadRow MsgBox ("Table name:" + rowData.TableName) End Sub