diff options
author | Silvio <silvio@devlet.com.br> | 2010-02-22 16:47:35 -0300 |
---|---|---|
committer | Silvio <silvio@devlet.com.br> | 2010-02-22 16:47:35 -0300 |
commit | 9bf125b29bce4db7f7d142f1ae2dafec8d2b7162 (patch) | |
tree | e4e6937f4d060932003c0c625d3c06f2d10a6db2 | |
download | cinisis-9bf125b29bce4db7f7d142f1ae2dafec8d2b7162.tar.gz cinisis-9bf125b29bce4db7f7d142f1ae2dafec8d2b7162.tar.bz2 |
Initial import
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | query.php | 84 |
2 files changed, 85 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1377554 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.swp diff --git a/query.php b/query.php new file mode 100644 index 0000000..4ac3b25 --- /dev/null +++ b/query.php @@ -0,0 +1,84 @@ +<?php // vim:syntax=php +/* + The Malete project - the Z39.2/Z39.50 database framework of OpenIsis. + Version 0.9.x (patchlevel see file Version) + Copyright (C) 2001-2004 by Erik Grziwotz, erik@openisis.org + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + see README for more information +EOH */ + +// $Id: demo.php,v 1.3 2004/11/02 13:44:42 kripke Exp $ +// demo for the Isis package + +require 'malete/php/Isis.php'; // use require 'Isis/Rec.php' if you need only this +?><html><head> + <title>Demo for package Isis</title> +</head><body> +<?php + + // get request parameters a and b + // (as well as any plain numeric and v%d style + $param = Isis_Http::fromReq( array( + 'a' => 22, 'b' => 42 + ) ); + + // create a db with field list ("fdt") + $fdt = array( + 'periodico' => 1, + 'data' => 2, + 'titulo' => 3, + ); +?> + +<h2>server</h2> +<?php + $db = new Isis_Db($fdt, 'anu10', new Isis_Server()); + if ( !$db->srv->sock ) + echo "could not contact server\n"; + else { +?> + + <h3>terms beginning with...</h3> +<?php + $query = 'a'; + $terms = $db->terms($query); + echo "got ",count($terms), " terms for '$query'</br>\n"; + foreach ($terms as $t) { + list($cnt, $term) = explode("\t", $t); + echo "'$term'($cnt) "; + } + echo "</br>\n"; +?> + + <h3>query reading records</h3> +<?php + $query = 'Corumbiara'; + $recs = $db->query($query); + echo "got ",count($recs), " records for '$query'</br>\n"; + foreach ($recs as $r) + echo "<pre>---\n", $r->toString(), "---\n</pre>\n"; +?> + + <h3>query reading 1</h3> +<?php + $r = $db->read(1); + echo "<pre>---\n", $r->toString(), "---\n</pre>\n"; +?> +<?php + } // end else could contact server +?> +</body></html> |