Example usage for javax.sql.rowset.spi SyncProvider NONUPDATABLE_VIEW_SYNC

List of usage examples for javax.sql.rowset.spi SyncProvider NONUPDATABLE_VIEW_SYNC

Introduction

In this page you can find the example usage for javax.sql.rowset.spi SyncProvider NONUPDATABLE_VIEW_SYNC.

Prototype

int NONUPDATABLE_VIEW_SYNC

To view the source code for javax.sql.rowset.spi SyncProvider NONUPDATABLE_VIEW_SYNC.

Click Source Link

Document

Indicates that a SyncProvider implementation does not support synchronization between a RowSet object and the SQL VIEW used to populate it.

Usage

From source file:Main.java

/**
     * Returns whether this SyncProvider implementation can perform
     * synchronization between a RowSet object and the SQL VIEW in the data source
     * from which the RowSet object got its data.
     *//*from  www. ja  v a 2 s.  co  m*/
    public int supportsUpdatableView() {
        return SyncProvider.NONUPDATABLE_VIEW_SYNC;
    }