Branch: Tag:

2009-02-15

2009-02-15 16:15:41 by Stephen R. van den Berg <srb@cuci.nl>

Various documentation fixes.

Rev: lib/modules/Parser.pmod/Tabular.pike:1.5
Rev: lib/modules/Sql.pmod/pgsql.pike:1.56
Rev: lib/modules/Sql.pmod/pgsql_util.pmod:1.15
Rev: src/modules/Msql/msqlmod.c:1.31
Rev: src/modules/Postgres/pgresult.c:1.40
Rev: src/modules/Postgres/postgres.c:1.65

292:      //! Returns the command-complete status for this query.   //! + //! @seealso + //! @[affected_rows()] + //! + //! @note   //! This function is PostgreSQL-specific, and thus it is not available   //! through the generic SQL-interface. - //! - //! @seealso - //! @[affected_rows] +    string status_command_complete() {    return _statuscmdcomplete;   }      //! Returns the number of affected rows by this query.   //! -  + //! @seealso + //! @[status_command_complete()] + //! + //! @note   //! This function is PostgreSQL-specific, and thus it is not available   //! through the generic SQL-interface. - //! - //! @seealso - //! @[status_command_complete] +    int affected_rows() {    int rows;    if(_statuscmdcomplete)
405:   //! zero argument to this method.   //!   //! @seealso - //! @[eof] + //! @[eof()]   int|array(mixed) fetch_row(void|int|string|array(string) buffer) {   #ifndef NO_LOCKING    Thread.MutexKey fetchmtxkey = fetchmutex.lock();