Insertar Fecha en DBF

21/06/2005 - 18:59 por mvillagran | Informe spam
Hola a todos

Necesito mucha ayuda. Quiero insertar una fecha en una tabla DBF
pero no encuentro la forma exacta hacerlo. Hasta ahora he intentado d
la siguiente manera

INSERT INTO ENCABEZADO_E (fecha, rutfact, obsfact, nv_tipvta
nv_codvdd, nv_fmapag, formpago, att)
VALUES (#06-09-05#, '89524800-2', '', 'Internet', 'WWW', 'Cuent
Corriente', 'Contado', 'Web'

pero me envía un error de Sintaxis

¿Álguien sabe como hacerlo

Muchas Gracias

mvillagra
mvillagran's Profile: http://www.msusenet.com/member.php?userid$8
View this thread: http://www.msusenet.com/t-187055371

Preguntas similare

Leer las respuestas

#1 Manuel Vera
21/06/2005 - 19:52 | Informe spam
Prueba de las siguientes formas:

1) 'aaaa-mm-dd'
2) 'mm-dd-aaaa'
3) cambiando - por / en 1 y 2
4) quitandole - en 1 y 2

Salu2
MV

"mvillagran" wrote in message
news:

Hola a todos.

Necesito mucha ayuda. Quiero insertar una fecha en una tabla DBF,
pero no encuentro la forma exacta hacerlo. Hasta ahora he intentado de
la siguiente manera:

INSERT INTO ENCABEZADO_E (fecha, rutfact, obsfact, nv_tipvta,
nv_codvdd, nv_fmapag, formpago, att)
VALUES (#06-09-05#, '89524800-2', '', 'Internet', 'WWW', 'Cuenta
Corriente', 'Contado', 'Web')

pero me envía un error de Sintaxis.

¿Álguien sabe como hacerlo?

Muchas Gracias.


mvillagran

mvillagran's Profile: http://www.msusenet.com/member.php?userid$84
View this thread: http://www.msusenet.com/t-1870553710

Respuesta Responder a este mensaje
#2 Jhonny Vargas P. [MVP]
21/06/2005 - 21:02 | Informe spam
coloca las fechas en este formato:

values (CTOD('mm/dd/yyyy'), )

Saludos,
Jhonny Vargas P.
Santiago de Chile
https://mvp.support.microsoft.com/profileŸ1AF0AC-85CF-4DC4-8741-BE6A88764F19


"mvillagran" escribió en el mensaje
news:

Hola a todos.

Necesito mucha ayuda. Quiero insertar una fecha en una tabla DBF,
pero no encuentro la forma exacta hacerlo. Hasta ahora he intentado de
la siguiente manera:

INSERT INTO ENCABEZADO_E (fecha, rutfact, obsfact, nv_tipvta,
nv_codvdd, nv_fmapag, formpago, att)
VALUES (#06-09-05#, '89524800-2', '', 'Internet', 'WWW', 'Cuenta
Corriente', 'Contado', 'Web')

pero me envía un error de Sintaxis.

¿Álguien sabe como hacerlo?

Muchas Gracias.


mvillagran

mvillagran's Profile: http://www.msusenet.com/member.php?userid$84
View this thread: http://www.msusenet.com/t-1870553710

Respuesta Responder a este mensaje
#3 mvillagran
21/06/2005 - 21:04 | Informe spam
He probado con las siguientes opciones según me has indicado y siempr
megenera el mismo error

INSERT INTO ENCABEZADO_E (fecha, rutfact, obsfact, nv_tipvta
nv_codvdd, nv_fmapag, formpago, att)
VALUES (#06-09-2005#, '89524800-2', '', 'Internet', 'WWW', 'Cuent
Corriente', 'Contado', 'Web'
INSERT INTO ENCABEZADO_E (fecha, rutfact, obsfact, nv_tipvta
nv_codvdd, nv_fmapag, formpago, att)
VALUES (#06/09/2005#, '89524800-2', '', 'Internet', 'WWW', 'Cuent
Corriente', 'Contado', 'Web'

INSERT INTO ENCABEZADO_E (fecha, rutfact, obsfact, nv_tipvta
nv_codvdd, nv_fmapag, formpago, att)
VALUES ('#06/09/2005#', '89524800-2', '', 'Internet', 'WWW', 'Cuent
Corriente', 'Contado', 'Web'

INSERT INTO ENCABEZADO_E (fecha, rutfact, obsfact, nv_tipvta
nv_codvdd, nv_fmapag, formpago, att)
VALUES (#06-09-05#, '89524800-2', '', 'Internet', 'WWW', 'Cuent
Corriente', 'Contado', 'Web'

INSERT INTO ENCABEZADO_E (fecha, rutfact, obsfact, nv_tipvta
nv_codvdd, nv_fmapag, formpago, att)
VALUES (#06/09/05#, '89524800-2', '', 'Internet', 'WWW', 'Cuent
Corriente', 'Contado', 'Web'

INSERT INTO ENCABEZADO_E (fecha, rutfact, obsfact, nv_tipvta
nv_codvdd, nv_fmapag, formpago, att)
VALUES (#06/09/05#, '89524800-2', '', 'Internet', 'WWW', 'Cuent
Corriente', 'Contado', 'Web'

INSERT INTO ENCABEZADO_E (fecha, rutfact, obsfact, nv_tipvta
nv_codvdd, nv_fmapag, formpago, att)
VALUES (#06-09-05#, '89524800-2', '', 'Internet', 'WWW', 'Cuent
Corriente', 'Contado', 'Web'

mvillagra
mvillagran's Profile: http://www.msusenet.com/member.php?userid$8
View this thread: http://www.msusenet.com/t-187055371
Respuesta Responder a este mensaje
#4 mvillagran
21/06/2005 - 22:05 | Informe spam
Muchas Gracias Jhonny. Incluí la setencia dentro de la consulta y pud
ingresar la fecha. Gracias

INSERT INTO ENCABEZADO_E (fecha, rutfact, obsfact, nv_tipvta
nv_codvdd, nv_fmapag, formpago, att) VALUES (ctod('\" & fecha & \"')
'\" & ped.rutLocal & \"', '\" & ped.observacion & \"', 'Internet'
'WWW', \"'Cuenta Corriente', 'Contado', 'Web')
Gracias Otra Vez

mvillagra
mvillagran's Profile: http://www.msusenet.com/member.php?userid$8
View this thread: http://www.msusenet.com/t-187055371
Respuesta Responder a este mensaje
#5 Manuel Vera
21/06/2005 - 22:16 | Informe spam
Pero yo te lo habia indicado sin usar el numeral #. Por ejemplo:

INSERT INTO ENCABEZADO_E (fecha, rutfact, obsfact, nv_tipvta,
nv_codvdd, nv_fmapag, formpago, att)
VALUES ('06-09-05', '89524800-2', '', 'Internet', 'WWW', 'Cuenta
Corriente', 'Contado', 'Web')

También, mira y prueba la sugerencia que posteó Jhonny Vargas.

Salu2
MV
Respuesta Responder a este mensaje
Ads by Google
Help Hacer una preguntaSiguiente Respuesta Tengo una respuesta
Search Busqueda sugerida