Query: maxdb_kill
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
MAXDB_KILL(3) 1 MAXDB_KILL(3) maxdb_kill - Disconnects from a MaxDB server Procedural styleSYNOPSISbool maxdb_kill (resource $link, int $processid)DESCRIPTIONObject oriented style bool maxdb::kill (int $processid) This function is used to disconnect from a MaxDB server specified by the $processid parameter.RETURN VALUESReturns TRUE on success or FALSE on failure.EXAMPLESExample #1 Object oriented style <?php $maxdb = new maxdb("localhost", "MONA", "RED", "DEMODB"); /* check connection */ if (maxdb_connect_errno()) { printf("Connect failed: %s ", maxdb_connect_error()); exit(); } /* determine our thread id */ $thread_id = $maxdb->thread_id; /* Kill connection */ $maxdb->kill($thread_id); /* This should produce an error */ if (!$maxdb->query("CREATE TABLE myCity LIKE City")) { printf("Error: %s ", $maxdb->error); exit; } /* close connection */ $maxdb->close(); ?> Example #2 Procedural style <?php $link = maxdb_connect("localhost", "MONA", "RED", "DEMODB"); /* check connection */ if (maxdb_connect_errno()) { printf("Connect failed: %s ", maxdb_connect_error()); exit(); } /* determine our thread id */ $thread_id = maxdb_thread_id($link); /* Kill connection */ maxdb_kill($link, $thread_id); /* This should produce an error */ if (!maxdb_query($link, "CREATE TABLE myCity LIKE City")) { printf("Error: %s ", maxdb_error($link)); exit; } /* close connection */ maxdb_close($link); ?> The above example will output something similar to: Error: Session not connectedSEE ALSOmaxdb_thread_id(3). PHP Documentation Group MAXDB_KILL(3)
Related Man Pages |
---|
maxdb_stat(3) - php |
maxdb_get_host_info(3) - php |
maxdb_get_proto_info(3) - php |
maxdb_kill(3) - php |
maxdb_ping(3) - php |
Similar Topics in the Unix Linux Community |
---|
Problems with file descriptor |
how to close an .app without using Kill |
creating multiple threads using single thread id |
NDM: Source file open failed. Error= 2 |
Sorting |