Files
harbour-core/harbour/extras/rddado/tests/mysql3.prg
Viktor Szakats 340318e66d 2012-07-21 19:09 UTC+0200 Viktor Szakats (vszakats syenar.net)
+ extras
  - examples
  * doc/dirstruc.txt
    * renamed 'examples' to what it is more: 'extras'
2012-07-21 17:10:27 +00:00

26 lines
349 B
Plaintext

/*
* $Id$
*/
// Testing LOCATE and CONTINUE
#include "adordd.ch"
REQUEST ADORDD
function Main()
USE test00 VIA "ADORDD" TABLE "ACCOUNTS" MYSQL ;
FROM "www.freesql.org" USER "myuser" PASSWORD "mypass"
LOCATE FOR "City LIKE 'Chi*'"
while ! Eof()
? test00->First, test00->City
CONTINUE
end
USE
return nil