INF: Using Browse Mode in DB-Library

Last reviewed: April 25, 1997
Article ID: Q42303

The information in this article applies to:
  • Microsoft SQL Server Programmer's Toolkit, version 4.2

SUMMARY

The following is information on using browse mode in DB-Library (DB-Lib):

  1. The table must have a Timestamp column, as follows:

          create table xxx (columnname datatype,
    
                            columnname datatype,
                              .
                              .
                              .
                            TIMESTAMP           )
    
    

  2. The table must have a unique index, and the following must be true:

    a. The index must be defined before any data is added.

    b. The definition of primary key with sp_primary key is not

          required.
    

  3. The SELECT statement must include the FOR BROWSE option.

MORE INFORMATION

The dbtabbrowse function indicates whether browse is permitted on a table. If the return value from dbtabbrowse is not 1 after the dbresults for the SELECT...FOR BROWSE, browse will not work. Check that the table has a unique index and that the Timestamp column contains non-null data.

SELECT * FROM... after data is added to the table should produce values in the Timestamp field even though no values were entered on the INSERT statement.


Additional query words: dblib
Keywords : kbprg SSrvDB_Lib
Version : 4.2
Platform : OS/2


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: April 25, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.