home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / dbmsg / sql / vbsql / browse.bas < prev    next >
Encoding:
BASIC Source File  |  1996-04-03  |  402 b   |  21 lines

  1. Rem Globals
  2.  
  3. Rem These handle the SQL Server connection
  4.  
  5. Global DBLIB_VERSION$
  6. Global PrimaryWindowTitle$
  7. Global SqlConn%
  8. Global ServerName$
  9. Global LoginID$
  10. Global Password$
  11. Global DatabaseName$
  12. Global SQLStatus%
  13. Global DefServer$
  14. Global DefLogin$
  15. Global Const LoginTimeout% = 30
  16. Global Const QueryTimeout% = 60
  17.  
  18. Rem Additional needed for updates in browse mode
  19. Global SqlUpdConn%
  20.  
  21.