XWare Поиск по информационным ресурсам МГУ English Russian
       
       Точная форма слов   О проекте   Сайты   Помощь
Поиск по:old.master.cmc.msu.ru   - Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 1421 - 1440 из 3519.

В начало ] Пред. | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | След.В конец ]

Упорядочить по: URL  |  дате изменения
1421. OCIColumnSize
PHP Manual . ... 3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) OCIColumnSize -- return result column size . int OCIColumnSize ( int stmt, mixed column) . OCIColumnSize() returns the size of the column as given by Oracle. ... 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 ; ... OCIColumnName . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocicolumnsize.html -- 4.9 Кб -- 03.02.2002
Похожие документы

1422. OCIColumnType
PHP Manual . ... 3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) OCIColumnType -- Returns the data type of a column. mixed OCIColumnType ( int stmt, int col) . ... 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 ; See also OCINumCols() , OCIColumnName() , and OCIColumnSize() . ... OCIColumnSize . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocicolumntype.html -- 4.8 Кб -- 03.02.2002
Похожие документы

1423. OCIColumnIsNULL
. PHP Manual . Prev . Next . (3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) OCIColumnIsNULL -- test whether a result column is NULL . int OCIColumnIsNULL ( int stmt, mixed column) . OCIColumnIsNULL() returns TRUE if the returned column column in the result from the statement stmt is NULL . You can either use the column-number (1-Based) or the column-name for the col parameter. Prev . Home . Next . OCIFetchStatement . Up . OCIColumnName
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocicolumnisnull.html -- 3.7 Кб -- 03.02.2002
Похожие документы

1424. OCIColumnName
PHP Manual . ... 3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) OCIColumnName -- Returns the name of a column. string OCIColumnName ( int stmt, int col) . ... 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 ; See also OCINumCols() , OCIColumnType() , and OCIColumnSize() . ... OCIColumnSize ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocicolumnname.html -- 4.8 Кб -- 03.02.2002
Похожие документы

1425. OCIFetchStatement
PHP Manual . ... 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) OCIFetchStatement -- Fetch all rows of result data into an array. int OCIFetchStatement ( int stmt, array & variable) . OCIFetchStatement() fetches all the rows from a result into a user-defined array. OCIFetchStatement() returns the number of rows fetched. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocifetchstatement.html -- 4.7 Кб -- 03.02.2002
Похожие документы

1426. OCIFetch
. PHP Manual . Prev . Next . (3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) OCIFetch -- Fetches the next row into result-buffer . int OCIFetch ( int statement) . OCIFetch() fetches the next row (for SELECT statements) into the internal result-buffer. Prev . Home . Next . OCIResult . Up . OCIFetchInto
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocifetch.html -- 3.3 Кб -- 03.02.2002
Похожие документы

1427. OCIFetchInto
... Next . 3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) OCIFetchInto -- Fetches the next row into result-array . int OCIFetchInto ( int stmt, array & result [, int mode]) . OCIFetchInto() fetches the next row (for SELECT statements) into the result array. ... By default result will contain a zero-based array of all columns that are not NULL . ... You can specify more than one flag by simply adding them up (eg OCI_ASSOC+OCI_RETURN_NULLS). ... DEFAULT) . OCI_RETURN_NULLS Return empty columns. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocifetchinto.html -- 4.4 Кб -- 03.02.2002
Похожие документы

1428. OCINumCols
PHP Manual . ... 3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) OCINumCols -- Return the number of result columns in a statement . int OCINumCols ( int stmt) . ... php print "<HTML><PRE>\n"; $conn = OCILogon("scott", "tiger"); $stmt = OCIParse($conn,"select * from emp"); OCIExecute($stmt); while ( OCIFetch($stmt) ) { print "\n"; $ncols = OCINumCols($stmt); for ( $i = 1; $i <= $ncols; $i++ ) { $column_name = OCIColumnName($stmt,$i); $column_value = OCIResult($stmt,$i); print $column_name . column_value . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocinumcols.html -- 4.2 Кб -- 03.02.2002
Похожие документы

1429. OCIResult
. PHP Manual . Prev . Next . (3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) OCIResult -- Returns column value for fetched row . mixed OCIResult ( int statement, mixed column) . OCIResult() returns the data for column column in the current row (see OCIFetch() ). OCIResult() will return everything as strings except for abstract types (ROWIDs, LOBs and FILEs). Prev . Home . Next . OCINumCols . Up . OCIFetch
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ociresult.html -- 3.4 Кб -- 03.02.2002
Похожие документы

1430. OCINewDescriptor
PHP Manual . ... 3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) OCINewDescriptor -- Initialize a new empty descriptor LOB/FILE (LOB is default) . ... Valid values for the valid type are OCI_D_FILE, OCI_D_LOB, OCI_D_ROWID. ... php /* This script demonstrates file upload to LOB columns * The formfield used for this example looks like this * form action= upload.php3 method= post enctype= multipart/form-data * input type = file name= lob_upload * ... */ if(!isset($ lob_upload ) || $ ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocinewdescriptor.html -- 7.6 Кб -- 03.02.2002
Похожие документы

1431. OCIRollback
. PHP Manual . Prev . Next . (3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) OCIRollback -- Rolls back outstanding transactions . int OCIRollback ( int connection) . OCIRollback() rolls back all outstanding statements for Oracle connection connection . Prev . Home . Next . OCICommit . Up . OCINewDescriptor
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocirollback.html -- 3.3 Кб -- 03.02.2002
Похожие документы

1432. OCIRowCount
... 3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) OCIRowCount -- Gets the number of affected rows . int OCIRowCount ( int statement) . OCIRowCount() returns the number of rows affected for eg update-statements. ... php print "<HTML><PRE>"; $conn = OCILogon("scott","tiger"); $stmt = OCIParse($conn,"create table emp2 as select * from emp"); OCIExecute($stmt); print OCIRowCount($stmt) . ... BR>"; OCIFreeStatement($stmt); $stmt = OCIParse($conn,"delete from emp2"); OCIExecute($stmt); print OCIRowCount($stmt) . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocirowcount.html -- 4.3 Кб -- 03.02.2002
Похожие документы

1433. OCICommit
. PHP Manual . Prev . Next . (3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) OCICommit -- Commits outstanding transactions . int OCICommit ( int connection) . OCICommit() commits all outstanding statements for Oracle connection connection . Prev . Home . Next . OCIExecute . Up . OCIRollback
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocicommit.html -- 3.3 Кб -- 03.02.2002
Похожие документы

1434. OCIExecute
. PHP Manual . Prev . Next . (3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) OCIExecute -- Execute a statement . int OCIExecute ( int statement [, int mode]) . OCIExecute() executes a previously parsed statement. (see OCIParse() . The optional mode allows you to specify the execution-mode (default is OCI_COMMIT_ON_SUCCESS). If you don't want statements to be committed automaticly specify OCI_DEFAULT as your mode. Prev . Home . Next . OCILogOff . Up . OCICommit
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ociexecute.html -- 3.5 Кб -- 03.02.2002
Похожие документы

1435. OCILogOff
. PHP Manual . Prev . Next . (3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) OCILogOff -- Disconnects from Oracle . int OCILogOff ( int connection) . OCILogOff() closes an Oracle connection. Prev . Home . Next . OCINLogon . Up . OCIExecute
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocilogoff.html -- 3.2 Кб -- 03.02.2002
Похожие документы

1436. OCINLogon
... 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) OCINLogon -- Connect to an Oracle database and log on using a new connection. ... OCINLogon() forces a new connection. ... php print HTML PRE ; $db = ; $c1 = ocilogon( scott , tiger ,$db); $c2 = ocinlogon ( scott , tiger ,$db); function create_table($ conn ) { $ stmt = ociparse ($ conn , create table scott.hallo (test varchar2(64)) ); ociexecute ($ stmt ); echo $ conn . created table\n\n ; } function drop_table($ conn ) { $ stmt = ociparse ($...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocinlogon.html -- 6.3 Кб -- 03.02.2002
Похожие документы

1437. OCIBindByName
... 3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) OCIBindByName -- Bind a PHP variable to an Oracle Placeholder . int OCIBindByName ( int stmt, string ph_name, mixed & variable, int length [, int type]) . ... php /* OCIBindByPos example thies@thieso.net (980221) inserts 3 records into emp , and uses the ROWID for updating the records just after the insert. */ $ conn = OCILogon( scott , tiger ); $ stmt = OCIParse($ conn , insert into emp ( empno , ename ) . values (: empno ,: ename ) . returning ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocibindbyname.html -- 6.7 Кб -- 03.02.2002
Похожие документы

1438. OCILogon
... int OCILogon ( string username, string password [, string db]) . OCILogon() returns an connection identifier needed for most other OCI calls. ... php print HTML PRE ; $db = ; $c1 = ocilogon ( scott , tiger ,$db); $c2 = ocilogon ( scott , tiger ,$db); function create_table($ conn ) { $ stmt = ociparse($ conn , create table scott.hallo (test varchar2(64)) ); ociexecute ($ stmt ); echo $ conn . created table\n\n ; } function drop_table($ conn ) { $ stmt = ociparse($ ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocilogon.html -- 6.4 Кб -- 03.02.2002
Похожие документы

1439. OCIPLogon
PHP Manual . ... Next . 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) OCIPLogon -- Connect to an Oracle database and log on using a persistent connection. ... The optional third parameter can either contain the name of the local Oracle instance or the name of the entry in tnsnames.ora to which you want to connect. If the optional third parameter is not specified, PHP uses the environment variables ORACLE_SID (Oracle instance) or TWO_TASK (tnsnames.ora) to determine which database to connect to. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ociplogon.html -- 3.8 Кб -- 03.02.2002
Похожие документы

1440. OCIDefineByName
PHP Manual . ... 3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) OCIDefineByName -- Use a PHP variable for the define-step during a SELECT . int OCIDefineByName ( int stmt, string Column-Name, mixed variable [, int type]) . OCIDefineByName() uses fetches SQL-Columns into user-defined PHP-Variables. ... php /* OCIDefineByPos example thies@thieso.net (980219) */ $conn = OCILogon("scott","tiger"); $stmt = OCIParse($conn,"select empno, ename from emp"); /* the define MUST be done BEFORE ociexecute! ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocidefinebyname.html -- 4.7 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | След.В конец ]

Rambler's Top100 RFBR Яндекс цитирования