Ver Mensaje Individual
  #4 (permalink)  
Antiguo 27/02/2008, 09:38
Giovana
 
Fecha de Ingreso: agosto-2006
Mensajes: 3
Antigüedad: 17 años, 9 meses
Puntos: 0
Re: base de datos temporar

Espero poder ayudarte , yo creo mis temporales asi

Crear Temporal
Cn.Execute "Create table #Tempo_Total (IdItem char(20), Urdido numeric(18,3), Trama numeric(18,3), Descripcion varchar(50), " _
& "Linea varchar(50), Sublinea varchar(50) )"

Abiri Temporal
Set rsTemporal = New ADODB.Recordset
With rsTemporal
.CursorLocation = adUseClient
.LockType = adLockPessimistic
.CursorType = adOpenStatic
.ActiveConnection = Cn
.Open "Select * from #Tempo_Total "
End With


borrar temporal
Cn.Execute "Drop Table #Tempo_Total"

saludos