EULANDA® ERP System Head Start thru Technology
Statistic data will be determined
Orders will be transformed
If the SQL command retrieve the data over a SELECT command e.g., you receive the dataset of the type ADO.Recordset.
These command carries out a simple query which determines the number of addresses The determined number will be shown in a VBScript reference window.
VBScript
Sql = "SELECT number_of_addresses = COUNT(*) FROM address"
Set rs = Client.ExecuteSql(Sql, "Number of addresses determined")
MsgBox "In the database are " & CStr(rs.Fields("number_of_addresses").Value) &_
" addresses available"