
Chyfo version 1.7.1

Copyright (C) 1999-2000 Ispire Software
All Rights Reserved.

TIPS 
----

  1. If converting was successful Chyfo return code is 0 otherwise
return code is -1. You can use this feature in batch files. For example:

   @echo off
   cls
   chyfo /d=datasource /u=user /p=pass /t=table1 
   if errorlevel 0 goto ok
   echo.
   echo Converting error
   goto ex
   :ok
   echo.
   echo No errors
   :ex

  2. Using OS special characters.
  OS Windows interprets characters such as %,| as the OS special characters.
So if you want to use them in batch files you should duplicate them.

  Use 
      chyfo /d = dsn /s = select * from t1 where field1 like '%%123%%'
  instead of     
      chyfo /d = dsn /s = select * from t1 where field1 like '%123%'

  Note. When you use Chyfo with options file you don't need to duplicate 
	this characters in it.

---------------------------------------------------------------------------
                                                  



