This example shows the use of the GlobalDbType property. A DSN named 'nwind' has been defined in the server control panel: this DSN points to SqlServer database.
  ProductName QuantityPerUnit UnitPrice
1 Chai 10 boxes x 20 bags 18
2 Chang 24 - 12 oz bottles 19
3 Aniseed Syrup 12 - 550 ml bottles 10
4 Chef Anton's Cajun Seasoning 48 - 6 oz jars 22
5 Chef Anton's Gumbo Mix 36 boxes 21.35
ProductName Chai
QuantityPerUnit 10 boxes x 20 bags
UnitPrice 18
 First   Prev   Next   Last   Search 
This is the code implementing the example:
<!--#include file="VBSdb/inc.asp"-->
<%
   VbsDbNew objVbsDb
   objVbsDb( "GlobalDbType" ) = "SqlServer"
   objVbsDb( "Dsn" ) = "DRIVER={SQLServer};SERVER=192.168.1.9;UID=sa;PWD=go;DATABASE=NWind"
   objVbsDb( "Sql" ) = "select ProductName,QuantityPerUnit,UnitPrice from Products"
   VbsDb objVbsDb
%>
This demonstrative program connects to Nwind.mdb, the well known Microsoft Access sample database: the names of companies, products, people, characters, and/or data mentioned herein are fictious and are in no way intended to represent any real individual, company, product, or event. To download a copy of Nwind.mdb, please visit Microsoft's site.