Google Apps Script API
    Preparing search index...

    A JDBC ResultSet. For documentation of this class, see java.sql.ResultSet .

    interface JdbcResultSet {
        absolute(row: number): boolean;
        afterLast(): void;
        beforeFirst(): void;
        cancelRowUpdates(): void;
        clearWarnings(): void;
        close(): void;
        deleteRow(): void;
        findColumn(columnLabel: string): number;
        first(): boolean;
        getArray(columnIndex: number): JdbcArray;
        getArray(columnLabel: string): JdbcArray;
        getBigDecimal(columnIndex: number): any;
        getBigDecimal(columnLabel: string): any;
        getBlob(columnIndex: number): JdbcBlob;
        getBlob(columnLabel: string): JdbcBlob;
        getBoolean(columnIndex: number): boolean;
        getBoolean(columnLabel: string): boolean;
        getByte(columnIndex: number): number;
        getByte(columnLabel: string): number;
        getBytes(columnIndex: number): number[];
        getBytes(columnLabel: string): number[];
        getClob(columnIndex: number): JdbcClob;
        getClob(columnLabel: string): JdbcClob;
        getConcurrency(): number;
        getCursorName(): string;
        getDate(columnIndex: number): JdbcDate;
        getDate(columnIndex: number, timeZone: string): JdbcDate;
        getDate(columnLabel: string): JdbcDate;
        getDate(columnLabel: string, timeZone: string): JdbcDate;
        getDouble(columnIndex: number): number;
        getDouble(columnLabel: string): number;
        getFetchDirection(): number;
        getFetchSize(): number;
        getFloat(columnIndex: number): number;
        getFloat(columnLabel: string): number;
        getHoldability(): number;
        getInt(columnIndex: number): number;
        getInt(columnLabel: string): number;
        getLong(columnIndex: number): number;
        getLong(columnLabel: string): number;
        getMetaData(): JdbcResultSetMetaData;
        getNClob(columnIndex: number): JdbcClob;
        getNClob(columnLabel: string): JdbcClob;
        getNString(columnIndex: number): string;
        getNString(columnLabel: string): string;
        getObject(columnIndex: number): any;
        getObject(columnLabel: string): any;
        getRef(columnIndex: number): JdbcRef;
        getRef(columnLabel: string): JdbcRef;
        getRow(): number;
        getRowId(columnIndex: number): JdbcRowId;
        getRowId(columnLabel: string): JdbcRowId;
        getShort(columnIndex: number): number;
        getShort(columnLabel: string): number;
        getSQLXML(columnIndex: number): JdbcSQLXML;
        getSQLXML(columnLabel: string): JdbcSQLXML;
        getStatement(): JdbcStatement;
        getString(columnIndex: number): string;
        getString(columnLabel: string): string;
        getTime(columnIndex: number): JdbcTime;
        getTime(columnIndex: number, timeZone: string): JdbcTime;
        getTime(columnLabel: string): JdbcTime;
        getTime(columnLabel: string, timeZone: string): JdbcTime;
        getTimestamp(columnIndex: number): JdbcTimestamp;
        getTimestamp(columnIndex: number, timeZone: string): JdbcTimestamp;
        getTimestamp(columnLabel: string): JdbcTimestamp;
        getTimestamp(columnLabel: string, timeZone: string): JdbcTimestamp;
        getType(): number;
        getURL(columnIndex: number): string;
        getURL(columnLabel: string): string;
        getWarnings(): string[];
        insertRow(): void;
        isAfterLast(): boolean;
        isBeforeFirst(): boolean;
        isClosed(): boolean;
        isFirst(): boolean;
        isLast(): boolean;
        last(): boolean;
        moveToCurrentRow(): void;
        moveToInsertRow(): void;
        next(): boolean;
        previous(): boolean;
        refreshRow(): void;
        relative(rows: number): boolean;
        rowDeleted(): boolean;
        rowInserted(): boolean;
        rowUpdated(): boolean;
        setFetchDirection(direction: number): void;
        setFetchSize(rows: number): void;
        updateArray(columnIndex: number, x: JdbcArray): void;
        updateArray(columnLabel: string, x: JdbcArray): void;
        updateBigDecimal(columnIndex: number, x: any): void;
        updateBigDecimal(columnLabel: string, x: any): void;
        updateBlob(columnIndex: number, x: JdbcBlob): void;
        updateBlob(columnLabel: string, x: JdbcBlob): void;
        updateBoolean(columnIndex: number, x: boolean): void;
        updateBoolean(columnLabel: string, x: boolean): void;
        updateByte(columnIndex: number, x: number): void;
        updateByte(columnLabel: string, x: number): void;
        updateBytes(columnIndex: number, x: number[]): void;
        updateBytes(columnLabel: string, x: number[]): void;
        updateClob(columnIndex: number, x: JdbcClob): void;
        updateClob(columnLabel: string, x: JdbcClob): void;
        updateDate(columnIndex: number, x: JdbcDate): void;
        updateDate(columnLabel: string, x: JdbcDate): void;
        updateDouble(columnIndex: number, x: number): void;
        updateDouble(columnLabel: string, x: number): void;
        updateFloat(columnIndex: number, x: number): void;
        updateFloat(columnLabel: string, x: number): void;
        updateInt(columnIndex: number, x: number): void;
        updateInt(columnLabel: string, x: number): void;
        updateLong(columnIndex: number, x: number): void;
        updateLong(columnLabel: string, x: number): void;
        updateNClob(columnIndex: number, x: JdbcClob): void;
        updateNClob(columnLabel: string, x: JdbcClob): void;
        updateNString(columnIndex: number, x: string): void;
        updateNString(columnLabel: string, x: string): void;
        updateNull(columnIndex: number): void;
        updateNull(columnLabel: string): void;
        updateObject(columnIndex: number, x: any): void;
        updateObject(columnIndex: number, x: any, scaleOrLength: number): void;
        updateObject(columnLabel: string, x: any): void;
        updateObject(columnLabel: string, x: any, scaleOrLength: number): void;
        updateRef(columnIndex: number, x: JdbcRef): void;
        updateRef(columnLabel: string, x: JdbcRef): void;
        updateRow(): void;
        updateRowId(columnIndex: number, x: JdbcRowId): void;
        updateRowId(columnLabel: string, x: JdbcRowId): void;
        updateShort(columnIndex: number, x: number): void;
        updateShort(columnLabel: string, x: number): void;
        updateSQLXML(columnIndex: number, x: JdbcSQLXML): void;
        updateSQLXML(columnLabel: string, x: JdbcSQLXML): void;
        updateString(columnIndex: number, x: string): void;
        updateString(columnLabel: string, x: string): void;
        updateTime(columnIndex: number, x: JdbcTime): void;
        updateTime(columnLabel: string, x: JdbcTime): void;
        updateTimestamp(columnIndex: number, x: JdbcTimestamp): void;
        updateTimestamp(columnLabel: string, x: JdbcTimestamp): void;
        wasNull(): boolean;
    }
    Index

    Methods