Ver Mensaje Individual
  #3 (permalink)  
Antiguo 28/04/2010, 08:11
warbandit69
 
Fecha de Ingreso: diciembre-2008
Ubicación: http://www.solucionesrios.tk/
Mensajes: 413
Antigüedad: 15 años, 4 meses
Puntos: 19
Respuesta: Errores con AdoDB y IIS

Uso los drivers ya hechos de la clase adodb, pero dejame ver si la puedo modificar.

De todas maneras pego el codigo para que vean esa funcion

Código PHP:


Linea 58 
-> function AutoDetect_MSSQL_Date_Order($conn)
{
global 
$ADODB_mssql_date_order;
    
$adate $conn->GetOne('select getdate()');
    if (
$adate) {
        
$anum = (int) $adate;
        if (
$anum 0) {
            if (
$anum 31) {
                
//ADOConnection::outp( "MSSQL: YYYY-MM-DD date format not supported currently");
            
} else
                
$ADODB_mssql_date_order 'dmy';
        } else
            
$ADODB_mssql_date_order 'mdy';
    }
Linea 72 -> } 
__________________
http://www.solucionesrios.tk/

Visita mi Web!

Última edición por warbandit69; 28/04/2010 a las 08:14 Razón: Agregar info