* Makefile
* config/*
* contrib/*
* doc/*
* extras/*
* include/*
* lib/*
* package/*
* src/*
* tests/*
* utils/*
* removed empty lines left after removed '$' + 'Id' + '$' identifiers
24 lines
354 B
Plaintext
24 lines
354 B
Plaintext
#require "rddado"
|
|
|
|
// Testing LOCATE and CONTINUE
|
|
|
|
#include "adordd.ch"
|
|
|
|
REQUEST ADORDD
|
|
|
|
PROCEDURE Main()
|
|
|
|
USE test00 VIA "ADORDD" TABLE "ACCOUNTS" MYSQL ;
|
|
FROM "www.freesql.org" USER "myuser" PASSWORD "mypass"
|
|
|
|
LOCATE FOR "City LIKE 'Chi*'"
|
|
|
|
DO WHILE ! Eof()
|
|
? test00->First, test00->City
|
|
CONTINUE
|
|
ENDDO
|
|
|
|
USE
|
|
|
|
RETURN
|