[PHP-DOC] cvs: phpdoc /it/functions mssql.xml From: Luca Perugini (l.perugini <email protected>)
Date: 07/30/00

perugini Sun Jul 30 16:05:39 2000 EDT

  Modified files:
    /phpdoc/it/functions mssql.xml
  Log:
  Updated from english tree
  
  
Index: phpdoc/it/functions/mssql.xml
diff -u phpdoc/it/functions/mssql.xml:1.3 phpdoc/it/functions/mssql.xml:1.4
--- phpdoc/it/functions/mssql.xml:1.3 Sat Jun 24 00:38:44 2000
+++ phpdoc/it/functions/mssql.xml Sun Jul 30 16:05:39 2000
@@ -110,7 +110,7 @@
     <para>
      <function>Mssql_data_seek</function> moves the internal row
      pointer of the MS SQL result associated with the specified result
- identifier to pointer to the specifyed row number. The next call
+ identifier to point to the specified row number. The next call
      to <function>mssql_fetch_row</function> would return that row.
     </para>
     <para>
@@ -176,9 +176,9 @@
     </para>
     <para>
      <function>Mssql_fetch_field</function> can be used in order to
- obtain information about fields in a certain query result. If
+ obtain information about fields in a certain query result. If
      the field offset isn't specified, the next field that wasn't yet
- retreived by <function>mssql_fetch_field</function> is retreived.
+ retrieved by <function>mssql_fetch_field</function> is retrieved.
     </para>
     <para>
      The properties of the object are:
@@ -385,7 +385,7 @@
      <function>mssql_free_result</function> only needs to be called
      if you are worried about using too much memory while your script
      is running. All result memory will automatically be freed when
- the script, you may call <function>mssql_free_result</function>
+ the script ends. You may call <function>mssql_free_result</function>
      with the result identifier as an argument and the associated
      result memory will be freed.
     </para>
@@ -598,16 +598,12 @@
       <paramdef>mixed <parameter>field</parameter></paramdef>
      </funcprototype>
     </funcsynopsis>
- <para>
- Returns: The contents of the cell at the row and offset in the
- specified MS SQL result set.
- </para>
     <para>
      <function>Mssql_result</function> returns the contents of one
      cell from a MS SQL result set. The field argument can be the
- field's offset, or the field's name, or the field's table dot
- field's name (fieldname.tablename). If the column name has been
- aliased ('select foo as bar from...'), use the alias instead of
+ field's offset, the field's name or the field's table dot
+ field's name (tablename.fieldname). If the column name has been
+ aliased ('select foo as bar from...'), it uses the alias instead of
      the column name.
     </para>
     <para>