



Escrito 05 diciembre 2008 - 04:28
Escrito 05 diciembre 2008 - 08:59
Escrito 06 diciembre 2008 - 08:25
Escrito 06 diciembre 2008 - 09:24
¡Hombre!, Mejor de ahí se daña
, ¡Excelente!
![]()
Escrito 06 diciembre 2008 - 07:46
Escrito 09 diciembre 2008 - 06:32
case cdTablas1.Fields[j].DataType of ftString, ftWideString: begin CampoPaso := cdTablas1.Fields[j].AsString; CampoPaso := StringReplace(CampoPaso,'''','´',[rfReplaceAll]); ValoresSQL := ValoresSQL+#39+CampoPaso+#39; end; ftMemo,ftBlob, ftTypedBinary, ftGraphic : begin ValoresSQL := ValoresSQL+' NULL'; //ValoresSQL := ValoresSQL+' :BLOB'+inttostr(i); CampoBlob := True; end; ftDate, ftTime, ftDateTime, ftTimeStamp : begin //AQUI EL PROBLEMA if (cdTablas1.Fields[j].AsDateTime = NULL) or (cdTablas1.Fields[j].AsDateTime = 1899-12-30) then ValoresSQL := ValoresSQL+' NULL' else ValoresSQL := ValoresSQL+#39+DateToStr(cdTablas1.Fields[j].AsDateTime)+#39; ValoresSQL := StringReplace(ValoresSQL,'/','.',[rfReplaceAll]); end; ftInteger, ftSmallint : begin if cdTablas1.Fields[j].AsString = '' then ValoresSQL := ValoresSQL+'0' else ValoresSQL := ValoresSQL+cdTablas1.Fields[j].AsString; end; ftFloat, ftCurrency : begin if cdTablas1.Fields[j].AsString = '' then ValoresSQL := ValoresSQL+'0.00' else ValoresSQL := ValoresSQL+cdTablas1.Fields[j].AsString; end; ftBoolean : begin if cdTablas1.Fields[j].Value = True then ValoresSQL := ValoresSQL+'1' else ValoresSQL := ValoresSQL+'0'; end; else begin ValoresSQL := ValoresSQL+cdTablas1.Fields[j].AsString; end;
---------------------------
Debugger Exception Notification
---------------------------
Project MTF.exe raised exception class EIBInterBaseError with message 'conversion error from string "1899-12-30"'. Process stopped. Use Step or Run to continue.
---------------------------
OK Help
---------------------------
Escrito 09 diciembre 2008 - 06:37
ftDate, ftTime, ftDateTime, ftTimeStamp : begin if DateToStr(cdTablas1.Fields[j].AsDateTime) = '' then ValoresSQL := ValoresSQL+' NULL' else ValoresSQL := ValoresSQL+#39+cdTablas1.Fields[j].AsString+#39; ValoresSQL := StringReplace(ValoresSQL,'/','.',[rfReplaceAll]); end;
---------------------------
Debugger Exception Notification
---------------------------
Project MTF.exe raised exception class EIBInterBaseError with message 'conversion error from string ""'. Process stopped. Use Step or Run to continue.
---------------------------
OK Help
---------------------------
Escrito 10 diciembre 2008 - 07:14
ftDate, ftTime, ftDateTime, ftTimeStamp : begin if DateToStr(cdTablas1.Fields[j].AsDateTime) = '' then ValoresSQL := ValoresSQL+' NULL' else ValoresSQL := ValoresSQL+#39+FormatDateTime('mm/dd/yyyy', cdTablas1.Fields[j].AsDate)+#39; ValoresSQL := StringReplace(ValoresSQL,'/','.',[rfReplaceAll]); end;
Escrito 10 diciembre 2008 - 07:41
Escrito 11 diciembre 2008 - 04:01
---------------------------
Debugger Exception Notification
---------------------------
Project MTF.exe raised exception class EIBInterBaseError with message 'conversion error from string "12/30/1899"'. Process stopped. Use Step or Run to continue.
---------------------------
OK Help
---------------------------
Escrito 11 diciembre 2008 - 04:07
Hola Eduardo, con tu modificación me da este error:
---------------------------
Debugger Exception Notification
---------------------------
Project MTF.exe raised exception class EIBInterBaseError with message 'conversion error from string "12/30/1899"'. Process stopped. Use Step or Run to continue.
---------------------------
OK Help
---------------------------
Voy a separar los campos de tipo time a ver si el problema proviene de ahí.
Saludos.
Escrito 11 diciembre 2008 - 04:11
Escrito 11 diciembre 2008 - 04:18
Los campos son Date y Time, ¿A qué te refieres con que sólo acepta formato "11.12.2008"?, ¿que se separan por puntos?.
Saludos.
Escrito 11 diciembre 2008 - 06:08
---------------------------
Debugger Exception Notification
---------------------------
Project MTF.exe raised exception class EIBInterBaseError with message 'Dynamic SQL Error
SQL error code = -206
Column unknown
NO1
At line 1, column 23'. Process stopped. Use Step or Run to continue.
---------------------------
OK Help
---------------------------
Escrito 12 diciembre 2008 - 07:02
Escrito 12 diciembre 2008 - 07:14
Escrito 12 diciembre 2008 - 07:31
Escrito 12 diciembre 2008 - 07:50
Escrito 12 diciembre 2008 - 08:23
Escrito 12 diciembre 2008 - 08:33
NO1 = N01??? has verificado eso?