



Posted 05 December 2008 - 04:28 PM
Posted 05 December 2008 - 08:59 PM
Posted 06 December 2008 - 08:25 AM
Posted 06 December 2008 - 09:24 AM
¡Hombre!, Mejor de ahí se daña
, ¡Excelente!
![]()
Posted 06 December 2008 - 07:46 PM
Posted 09 December 2008 - 06:32 PM
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
---------------------------
Posted 09 December 2008 - 06:37 PM
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
---------------------------
Posted 10 December 2008 - 07:14 AM
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;
Posted 10 December 2008 - 07:41 AM
Posted 11 December 2008 - 04:01 PM
---------------------------
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
---------------------------
Posted 11 December 2008 - 04:07 PM
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.
Posted 11 December 2008 - 04:11 PM
Posted 11 December 2008 - 04:18 PM
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.
Posted 11 December 2008 - 06:08 PM
---------------------------
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
---------------------------
Posted 12 December 2008 - 07:02 AM
Posted 12 December 2008 - 07:14 AM
Posted 12 December 2008 - 07:31 AM
Posted 12 December 2008 - 07:50 AM
Posted 12 December 2008 - 08:23 AM
Posted 12 December 2008 - 08:33 AM
NO1 = N01??? has verificado eso?