Jump to content

gkobler

Members
  • Content Count

    181
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by gkobler

  1. Yes i did, but i can't get a specific answer fdcAmmann.Open; TRY fdqImportData.Open; WHILE NOT fdqImportData.Eof DO BEGIN ... some other code to store the data to a Firebird database ... fdcUpdateAmmann.CommandText.Clear; fdcUpdateAmmann.CommandText.Add(Format('UPDATE dbo.TDexAllocationTicketOut SET ReadDT = GETDATE() WHERE IDInt = %d', [fdqImportData.FieldByName('IdInt').AsInteger])); fdcUpdateAmmann.Execute; <<--- here i got the exception fdqImportData.Next; END; fdqImportData.Close; FINALLY fdcAmmann.Close; END; when i remark the Execute as a comment, there no exception are raises. So the connection must be active and working. The "TFDCommand.ResourceOptions.CmdExecMode" is set to "amBlocking", I think i have no Async commands. Otherwise D12 has made some changes. I tryed "MARS=Yes" and "MARS=No", still same exception.
  2. Does anyone have experience with Firebird 4, D11.3, FireDAC and the new data type "TimeStamp with Time Zone"? I would like to show the time zone in my field, have no idea to show it. Thanks in Advanced
  3. gkobler

    New Firebird 4 datatype "TIMESTAMP WITH TIMEZONE"

    Watch the RSP there are a Workaround
  4. gkobler

    Win 64 debugger not working

    Made an RSP at https://quality.embarcadero.com so Embarcadero can fix it
  5. gkobler

    Firebird - Monitor 2.5 / 3.0 / 4.0 / 5.0

    A new version is available V1.6.1.169. Support for FB5 RC1 and HDPI. Visit our Homepage and download the Trialversion: https://fbm.gksoft.ch
  6. gkobler

    Delphi 12 internal errors

    It was just for the beginning, after a while they opened it for all subscription members it think
  7. gkobler

    New Firebird 4 datatype "TIMESTAMP WITH TIMEZONE"

    Done. https://quality.embarcadero.com/browse/RSP-43311
  8. gkobler

    New Firebird 4 datatype "TIMESTAMP WITH TIMEZONE"

    Now i tryed the same test with D12, i can confirm that the Field are created as TSQLTimeStampOffsetField. But when i open the table now i got an exception (invalid argument could not convert the time) After that i add a GetText Methode procedure TForm1.FDTable1MONTIMESTAMPGetText(Sender: TField; var Text: string; DisplayText: Boolean); begin text:=Format('%s UTC(%d:00',[DateTimeToStr(Sender.AsDateTime),Sender.AsSQLTimeStampOffset.TimeZoneHour]); end; It will shows the follow result?? 756 Hours? When i look to the help file, it should be -12 .. +13 Hours! Also the property TimeZoneMinuts shows me 696 Did i found a bug?
  9. gkobler

    wuppdi Welcome Page for Delphi 11 Alexandria?

    In older Delphi versions, there was once the possibility to arrange your projects in a similar way as in the WP plugin
  10. gkobler

    New Firebird 4 datatype "TIMESTAMP WITH TIMEZONE"

    Didn't saw this changes on any note. But thanks, will try it next week.
  11. gkobler

    wuppdi Welcome Page for Delphi 11 Alexandria?

    The source code is unfortunately not public, but since D11.3 there are three demo projects that show how to create a WP plugin.
  12. gkobler

    wuppdi Welcome Page for Delphi 11 Alexandria?

    Under the Favorites Items you can ann some subitems with the + Button After creating subitems, you can click on them an add your prject on the right side as may you like. The added value of this plugin are, you can manage your projects where you working in a other way then delphi does. Also you can backup an restore this settings. Follow a small example how it could look likes.
  13. gkobler

    New Firebird 4 datatype "TIMESTAMP WITH TIMEZONE"

    https://docwiki.embarcadero.com/RADStudio/Alexandria/en/Connect_to_Firebird_(FireDAC) Makes not diffenrent, if the icu files there or not (same directory how the exe file). I'm sure i use the new fbclient.dll from FB4. CAST is working, but for me it's just a workaround, and works with Querys not with Tables. In my opinion, when you add the fields, it will create a TSQLTimeStampField insted of a TSQLTimeStampOffsetField! The TSQLTimeStampOffsetField is what i need i think, because it has information about the timezone. But it's not possible to replace the field, you got an error But thanks for showing me a other point of view.
  14. gkobler

    wuppdi Welcome Page for Delphi 11 Alexandria?

    New Release Built 24 for Delphi 11.3 and 12. https://dwp.gksoft.ch
  15. gkobler

    Delphi 12 is available

    be carefull with the Auto Suffix, found a bug today in D11.3 but it could be also in D12. https://quality.embarcadero.com/browse/RSP-43284
  16. gkobler

    Delphi 12 is available

    i can confirm this bug at D11.3, not testet yet on D12. You can disabled the option in the registry, but it's sometime still active, have not found any reproduced way to find out why.
  17. gkobler

    wuppdi Welcome Page for Delphi 11 Alexandria?

    New Release Built 23 for Delphi 12 Athens https://dwp.gksoft.ch Hope the homepage shows correctly, i allways has problems when i update it. I just compiled the Plugin, i did some test with the beta, but i don't expect any problems. Otherwise when somebody has problems wir D12, please report to me her at this thread. Thanks
  18. gkobler

    Breakpoints do not work.

    I think this is he asking for
  19. gkobler

    Breakpoints do not work.

    Use debug .dcus should be true
  20. I had the message from time to time, but it always went away after a restart. I have not dealt with it further.
  21. gkobler

    How to change the TVirtualImageList editor?

    It's not allowed to submit some files from Delphi, i think
  22. gkobler

    wuppdi Welcome Page for Delphi 11 Alexandria?

    New Built 23 released: https://dwp.gksoft.ch
  23. gkobler

    wuppdi Welcome Page for Delphi 11 Alexandria?

    Yes of course 🙂
  24. I had the same problem, also I then disabled it via registry key. This also worked for a while, but at some point the checkbox was active again. Somehow I do not see the connection yet, when the checkbox becomes active again. And important: Delphi must be terminated first, before you make changes to the registry.
  25. check the follow, may it could help https://blog.marcocantu.com/blog/2022-december-suggestions-help-delphi-compiler.html I have may 3th party components installed, incl. DevExpress. Have no problems with it, also in D11.3
×