Contents Index DBCommand interface DBConnectionContext interface

MobiLink Synchronization User's Guide
  Writing Synchronization Scripts in .NET
    MobiLink .NET API Reference

DBConnection interface


public interface DBConnection
Member of iAnywhere.MobiLink.Script

Represents a MobiLink ODBC connection.

This interface allows user-written synchronization logic to access an ODBC connection created by MobiLink.

Commit() method 

public void Commit( )

Commit the current transaction.

Rollback() method 

public void Rollback( )

Roll back the current transaction.

Close() method 

public void Close( )

Close the current connection.

CreateCommand() method 

public DBCommand CreateCommand( )

Create a SQL statement or command on this connection. Returns the newly generated DBCommand.


Contents Index DBCommand interface DBConnectionContext interface