home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "Module1"
- '*************************************************************************
- '**
- '** Copyright 1997 Pervasive Software Inc. All Rights Reserved
- '**
- '*************************************************************************
- '*************************************************************************
- ' SQLSAM16.BAS
- ' This module is for use with Visual Basic for MS-Windows and
- ' Scalable SQL. It contains declarations used by the sample progam,
- ' 'sqlsam16.frm'. For more info, look in sqlsam16.frm.
- '
- '************************************************************************
- '*************************************************************************
- ' DEFINE PERSON_STRUCT STRUCTURE AND GLOBAL VARIABLE
- '*************************************************************************
- Type PERSON_STRUCT
- RecLen As Integer
- ID As Long
- Dummy As Long
- FirstName As String * 16
- LastName As String * 26
- PermStreet As String * 31
- PermCity As String * 31
- PermState As String * 3
- PermZip As String * 11
- PermCountry As String * 21
- Street As String * 31
- City As String * 31
- State As String * 3
- Zip As String * 11
- Phone As String * 10
- EmergencyPhone As String * 20
- Unlisted As Byte
- DateOfBirth As String * 4
- EmailAddress As String * 31
- Sex As Byte
- Citizenship As String * 21
- Survey As Byte
- Smoker As Byte
- Married As Byte
- Children As Byte
- Disability As Byte
- Scholarship As Byte
- Comments As String * 200
- End Type
-
-
- '*************************************************************************
- ' Constants
- '*************************************************************************
- Const SUCCESS% = 0
-