Menu

Welcome to Help

Help
2003-11-13
2004-03-30
  • Nobody/Anonymous

    Welcome to Help

     
    • Dmitry Konnov

      Dmitry Konnov - 2003-11-15

      Hi,

      I want to take a part in IO project.
      Where i can download source files.

      Dmitry Konnov

      programmer@mail.spbnit.ru

       
    • yumata

      yumata - 2004-03-25

      Here is some bug - error posting string value edited in national codepage! How fix it? I use IBX connection, codepage WIN1251 (russian).
      Mail me yumata@ufanet.ru

       
    • yumata

      yumata - 2004-03-30

      I have been fix this bug! In InstantIbx.pas you need
      some patch:
      function TInstantIBXConnectionDef.CreateConnection(
        AOwner: TComponent): TCustomConnection;
      var
        Connection: TIBDatabase;
      begin
        Connection := TIBDatabase.Create(AOwner);
        try
          Connection.DatabaseName := DatabaseName;
          Connection.SQLDialect := 3;
      ///******** My bug-fix *****************///
          Connection.LoginPrompt:=false;
          Connection.Params.Clear;
          Connection.Params.Add('user_name=SYSDBA');
          Connection.Params.Add('password=masterkey');
          Connection.Params.Add('sql_role_name=');
          Connection.Params.Add('lc_ctype=WIN1251');
      ///*********** My bug-fix *************///

       

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.