diff options
author | Egon Schmid <eschmid@php.net> | 2000-05-11 12:10:53 +0000 |
---|---|---|
committer | Egon Schmid <eschmid@php.net> | 2000-05-11 12:10:53 +0000 |
commit | 7a3e2ee70a80be3966f33da8d0d69bb11884a5b3 (patch) | |
tree | 7de61d21c2e6808ed94ed277ee408a41b3e49aa7 /ext/odbc/php_odbc.c | |
parent | f4357f32545728e9ef0ce0e3cc27292a38a562e5 (diff) | |
download | php-git-7a3e2ee70a80be3966f33da8d0d69bb11884a5b3.tar.gz |
Fixed some typos.
Diffstat (limited to 'ext/odbc/php_odbc.c')
-rw-r--r-- | ext/odbc/php_odbc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/odbc/php_odbc.c b/ext/odbc/php_odbc.c index cd708577b5..331848da4e 100644 --- a/ext/odbc/php_odbc.c +++ b/ext/odbc/php_odbc.c @@ -2412,7 +2412,7 @@ PHP_FUNCTION(odbc_columns) #if !defined(HAVE_DBMAKER) && !defined(HAVE_SOLID) /* {{{ proto int odbc_columnprivileges(int connection_id, string catalog, string schema, string table, string column) - Returns a result identifier that can be used to fetch a list of columns and associated privileges for the specified table */ + Returns a result identifier that can be used to fetch a list of columns and associated privileges for the specified table */ PHP_FUNCTION(odbc_columnprivileges) { pval **pv_conn, **pv_cat, **pv_schema, **pv_table, **pv_column; @@ -2590,7 +2590,7 @@ PHP_FUNCTION(odbc_foreignkeys) /* }}} */ #endif /* HAVE_SOLID */ -/* {{{ proto int odbc_gettypeinfo(int connection_id [, int data_type ]) +/* {{{ proto int odbc_gettypeinfo(int connection_id [, int data_type]) Returns a result identifier containing information about data types supported by the data source */ PHP_FUNCTION(odbc_gettypeinfo) { @@ -2903,7 +2903,7 @@ PHP_FUNCTION(odbc_procedures) #endif /* HAVE_SOLID */ /* {{{ proto int odbc_specialcolumns(int connection_id, int type, string catalog, string schema, string name, int scope, int nullable) - Returns a result identifier containing either The optimal set of columns that uniquely identifies a row in the table or Columns that are automatically updated when any value in the row is updated by a transaction */ + Returns a result identifier containing either the optimal set of columns that uniquely identifies a row in the table or columns that are automatically updated when any value in the row is updated by a transaction */ PHP_FUNCTION(odbc_specialcolumns) { pval **pv_conn, **pv_type, **pv_cat, **pv_schema, **pv_name; |