resultset.cxx (ac9096f4) resultset.cxx (7950f2af)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 625 unchanged lines hidden (view full) ---

634
635//=========================================================================
636// virtual
637sal_Bool SAL_CALL ResultSet::relative( sal_Int32 rows )
638 throw( sdbc::SQLException, uno::RuntimeException )
639{
640/*
641 Attempting to move beyond the first/last row in the result set
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 625 unchanged lines hidden (view full) ---

634
635//=========================================================================
636// virtual
637sal_Bool SAL_CALL ResultSet::relative( sal_Int32 rows )
638 throw( sdbc::SQLException, uno::RuntimeException )
639{
640/*
641 Attempting to move beyond the first/last row in the result set
642 positions the cursor before/after the the first/last row.
642 positions the cursor before/after the first/last row.
643
644 Calling relative( 0 ) is valid, but does not change the cursor position.
645
646 Calling relative( 1 ) is different from calling next() because it makes
647 sense to call next() when there is no current row, for example, when
648 the cursor is positioned before the first row or after the last row of
649 the result set.
650*/

--- 1041 unchanged lines hidden ---
643
644 Calling relative( 0 ) is valid, but does not change the cursor position.
645
646 Calling relative( 1 ) is different from calling next() because it makes
647 sense to call next() when there is no current row, for example, when
648 the cursor is positioned before the first row or after the last row of
649 the result set.
650*/

--- 1041 unchanged lines hidden ---