>>Did you reopen Delphi after the change?

>>You can also use embedded, passing only the database filename in the
>>connection string. It should not need a password.
>>Adriano

Hi,

i forgot about this - i run new process but forgot that from delphi debugger 
it inherit settings - now it worked thanks.


To fix differences between FPC and Delphi
Could you write this api examples like this..

{$IFDEF FPC}
  PFBChar = PChar;
  FBChar = Char;
  FBString = String;
{$ELSE}
  QWORD = type UInt64;
  PFBChar = System.PAnsiChar;
  FBChar = AnsiChar;
  FBString = AnsiString;
{$ENDIF}

in any place in FBApi change PChar declaration to PFBChar and string to 
FBString and char to FBChar
something like this
Master_circularAllocPtr = function(this: Master; s: PFBChar; len: Cardinal; 
thr: NativeInt): PFBChar; cdecl;


With that changes all work

PS> is it possible to specify user and pass without storing it in system 
vars - which is not secure?

regards,
Karol Bieniaszewski








------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel

Reply via email to