Difference between revisions of "Standard Mode"

From BaseX Documentation
Jump to navigation Jump to search
m (Text replace - "ISC License" to "BSD License")
m (Text replacement - "syntaxhighlight" to "pre")
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
<p>In the standard mode of the [[Language Bindings]], a database command can be
+
<p>In the standard mode of the [[Clients]], a database command can be
 
sent to the server using the <code>execute()</code> function
 
sent to the server using the <code>execute()</code> function
 
of the <code>Session</code>. This functions returns the whole
 
of the <code>Session</code>. This functions returns the whole
Line 16: Line 16:
 
# Continue using the client (back to 2.), or close the session.
 
# Continue using the client (back to 2.), or close the session.
 
   
 
   
==Example in [https://svn.uni-konstanz.de/dbis/basex/trunk/api/etc/php/ PHP]==  
+
==Example in PHP==
 
   
 
   
<pre class="brush:php">
+
Taken from our [https://github.com/BaseXdb/basex/blob/master/basex-api/src/main/php/Example.php repository]:
 +
 
 +
<pre lang="php">
 
<?php
 
<?php
 
/*
 
/*
Line 24: Line 26:
 
  * Documentation: http://basex.org/api
 
  * Documentation: http://basex.org/api
 
  *
 
  *
  * (C) BaseX Team 2005-11, BSD License
+
  * (C) BaseX Team 2005-15, BSD License
 
  */
 
  */
 
include("BaseXClient.php");
 
include("BaseXClient.php");
Line 33: Line 35:
  
 
   // create session
 
   // create session
   $session = new Session("localhost", 1984, "admin", "admin");
+
   $session = new Session("localhost", 1984, "admin", "...");
 
    
 
    
 
   // perform command and print returned string
 
   // perform command and print returned string
Line 51: Line 53:
 
?>
 
?>
 
</pre>
 
</pre>
[[Category:Developer]]
 
[[Category:Server]]
 
[[Category:Bindings]]
 

Latest revision as of 17:39, 1 December 2023

In the standard mode of the Clients, a database command can be sent to the server using the execute() function of the Session. This functions returns the whole result. With the info() function, you can request some information on your executed process. If an error occurs, an exception with the error message will be thrown.

Usage[edit]

The standard execution works as follows:

  1. Create a new session instance with hostname, port, username and password.
  2. Call the execute() function of the session with the database commands as argument.
  3. Receive the result of a successfully executed command. If an error occurs, an exception is thrown.
  4. Optionally, call info() to get some process information
  5. Continue using the client (back to 2.), or close the session.

Example in PHP[edit]

Taken from our repository:

<?php
/*
 * This example shows how database commands can be executed.
 * Documentation: http://basex.org/api
 *
 * (C) BaseX Team 2005-15, BSD License
 */
include("BaseXClient.php");

try {
  // initialize timer
  $start = microtime(true);

  // create session
  $session = new Session("localhost", 1984, "admin", "...");
  
  // perform command and print returned string
  print $session->execute("xquery 1 to 10");

  // close session
  $session->close();

  // print time needed
  $time = (microtime(true) - $start) * 1000;
  print "\n$time ms\n";

} catch (Exception $e) {
  // print exception
  print $e->getMessage();
}
?>