Conjunto de cambios d7a822e en sipes para cord/includes/database.mysql.inc


Ignorar:
Fecha y hora:
23/05/2016 15:48:25 (hace 8 años)
Autor:
José Gregorio Puentes <jpuentes@…>
Branches:
stable, version-3.0
Children:
6f9ddf1
Parents:
b354002
Mensaje:

se agrego el directorio del cord

Fichero:
1 editado

Leyenda

No modificado
Añadido
Eliminado
  • cord/includes/database.mysql.inc

    rb354002 rd7a822e  
    5656  }
    5757
    58   // Decode url-encoded information in the db connection string
     58  // Decode urlencoded information in the db connection string
    5959  $url['user'] = urldecode($url['user']);
    60   // Test if database url has a password.
     60  // Test if database URL has a password.
    6161  $url['pass'] = isset($url['pass']) ? urldecode($url['pass']) : '';
    6262  $url['host'] = urldecode($url['host']);
     
    177177 * @param $result
    178178 *   A database query result resource, as returned from db_query().
    179  * 
     179 *
    180180 * @return
    181181 *   The resulting field or FALSE.
     
    254254 * Runs a SELECT query and stores its results in a temporary table.
    255255 *
    256  * Use this as a substitute for db_query() when the results need to stored
    257  * in a temporary table. Temporary tables exist for the duration of the page
    258  * request.
     256 * Use this as a substitute for db_query() when the results need to be stored
     257 * in a temporary table.
     258 *
    259259 * User-supplied arguments to the query should be passed in as separate parameters
    260260 * so that they can be properly escaped to avoid SQL injection attacks.
     
    275275 *   NOTE: using this syntax will cast NULL and FALSE values to decimal 0,
    276276 *   and TRUE values to decimal 1.
    277  *
    278277 * @param $table
    279278 *   The name of the temporary table to select into. This name will not be
    280279 *   prefixed as there is no risk of collision.
     280 *
    281281 * @return
    282282 *   A database query result resource, or FALSE if the query was not executed
Nota: Vea TracChangeset para ayuda en el uso del visor de conjuntos de cambios.