Do not let any software impress you!

Only let it convince your intellect.
Slider img 1
Do not look for a business paradise!

It is a waste of time.
Slider img 2
Only yourself can push you uphill.

There is no easy road to prizes.
Slider img 3
Productivity is the name of the game.

And you have to conquer it.
Slider img 4
As long as you understand it,

you will start to build your know-how.
Slider img 5
We can help with that.

We have the tools and the method.
Slider img 6
Procedure : AU_AUTOSCRIPT6

AutoScript

{...................database call examlpe...........}

cust_count = SelectFrom("SELECT COUNT(TITLE) FROM AU_BUSINESS")

call message("customer count=",cust_count)

{............SelectFrom is only for single records (one record) returns...}

cust_name = SelectFrom("SELECT TOP 1 TITLE FROM AU_BUSINESS")

call message("customer name=",cust_name)

{............SelectFrom is a set of concatenations..}

cust_name2 = SelectFrom("SELECT TITLE FROM AU_BUSINESS WHERE (AU_BUSINESS=",47215,")")

call message("customer name 2=",cust_name2)