home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 May / CMCD0505.ISO / Software / Shareware / Programare / pgedri / Source / Demos / Params / Readme.txt < prev   
Encoding:
Text File  |  2005-04-01  |  1.2 KB  |  28 lines

  1. pgExpress Driver Params Demo
  2. Vita Voom Software
  3. -----------------------------------------------------------------------
  4. This is a simple demo that will search using Params to look for 
  5. specific values in the PostgreSQL pg_type table.
  6.  
  7. Notes:
  8. 1) For Kylix/Delphi portibility reasons, this demo Uses the CLX, not 
  9.    VCL. It might look "flickering" for VCL users. The code is similar, 
  10.    however.
  11. 2) Kylix and Delphi 6 do not have the TSimpleDataset component. Delphi 
  12.    7 has TSQLClientDataset but it's on a Demos dir and not installed 
  13.    by default (Borland has discontinuated it's use). The most portable
  14.    way to do this demo is the one presented: using a client dataset, a 
  15.    SQL dataset  and a DatasetProvider.
  16. 3) Do not edit the pg_type table presented by default. It is a system 
  17.    table and you could be damaging your database system.
  18. 4) The '~~' operator found in the sdsParams query is a PostgreSQL 
  19.    operator similar to the LIKE keyword. The '%' char in the default
  20.    search string is a ""match zero or any number of chars" char (like 
  21.    '*' on the files mask i.e. '*.*' or '*.exe''.
  22.    
  23. -----------------------------------------------------------------------
  24. Steve Howe
  25. howe@vitavoom.com
  26. http://www.vitavoom.com
  27.  
  28.