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 / vbquery.bas < prev    next >
Encoding:
BASIC Source File  |  1996-04-03  |  365 b   |  16 lines

  1. Rem These handle the SQL Server connection for this application
  2.  
  3. ' Declare SqlConn as Integer in VBWin, Long in VBDOS
  4. Global SqlConn As Integer
  5.  
  6. Global DBLIB_VERSION$
  7. Global PrimaryWindowTitle$
  8. Global ServerName$
  9. Global LoginID$
  10. Global Password$
  11. Global DatabaseName$
  12. Global SQLStatus%
  13. Global Const LoginTimeout% = 30
  14. Global Const QueryTimeout% = 60
  15.  
  16.