From professional translators, enterprises, web pages and freely available translation repositories.
ocinumcols
ocinumcols
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
exemple 1. ocinumcols
ocinumcols
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
voir aussi ocinumcols(), ocicolumnname() et ocicolumnsize().
see also ocinumcols(), ocicolumnname(), and ocicolumnsize().
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
ocinumcols() retourne le nombre de colonnes dans un résultat.
ocinumcols() returns the number of columns in a statement.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
?php print "html pre \n"; $conn = ocilogon("scott", "tiger"); $stmt = ociparse($conn ,"select * from emp"); ociexecute($stmt); print" table border=\"1\ ""; print "tr"; print "th name / th"; print "th type / th"; print "th length / th"; print "/ tr"; $ncols = ocinumcols($stmt); for ($i = 1; $i = $ncols; $i+ +) {$column_name = ocicolumnname($stmt,$i); $column_type = ocicolumntype($stmt,$i); $column_size = ocicolumnsize($stmt,$i); print "tr"; print "td $column_name / td"; print "td $column_type / td"; print "td $column_size / td"; print "/ tr";} ocifreestatement($stmt); ocilogoff($conn); print "/ pre"; print "/ html \n";?
?php print "html pre \n"; $conn = ocilogon("scott", "tiger"); $stmt = ociparse($conn ,"select * from emp"); ociexecute($stmt); print" table border=\"1\ ""; print "tr"; print "th name / th"; print "th type / th"; print "th length / th"; print "/ tr"; $ncols = ocinumcols($stmt); for ($i = 1; $i = $ncols; $i+ +) {$column_name = ocicolumnname($stmt,$i); $column_type = ocicolumntype($stmt,$i); $column_size = ocicolumnsize($stmt,$i); print "tr"; print "td $column_name / td"; print "td $column_type / td"; print "td $column_size / td"; print "/ tr";} print "/ table \n"; ocifreestatement($stmt); ocilogoff($conn); print" / pre "; print" / html \n";?
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting