Código PHP:
...
Me.SQL = " SELECT nombre From Tabla "
Me.comandoDatos.CommandText = Me.SQL
Me.comandoDatos.Connection = conexionTran
tabla = New DataTable
Me.dAdap.SelectCommand = Me.comandoDatos
Me.dAdap.Fill(tabla)
....
Me.SQL = " SELECT Fecha From Tabla2 "
Me.comandoDatos.CommandText = Me.SQL
Me.comandoDatos.Connection = conexionTran
tabla = New DataTable
Me.dAdap.SelectCommand = Me.comandoDatos
Me.dAdap.Fill(tabla)
...
Me.SQL = " SELECT telefono From Tabla3 "
Me.comandoDatos.CommandText = Me.SQL
Me.comandoDatos.Connection = conexionTran
tabla = New DataTable
Me.dAdap.SelectCommand = Me.comandoDatos
Me.dAdap.Fill(tabla)
....
La pregunta es si hay alguna manera de cargar el datatable más rápido.
Si alguien tiene alguna idea le estaría muy agradecido.