Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 4 of 4 total
Thread Starting EDBSRVR in Delphi code, then changing the Session-settings
Tue, Apr 18 2017 11:36 AMPermanent Link

Adam Brett

Orixa Systems

I am trying to automate an installation process.

The following works, and gets EDBSRVR.exe running:

   ShellExecute(Handle, 'open',
                PCHAR('C:\MyPath\EDBSRVR.exe'), '',
                PCHAR('C:\MyPath'), 1);

However, EDB Server defaults to Unicode in this situation rather than ANSI.

Is it possible to set it to run ANSI at start-up?
Tue, Apr 18 2017 12:22 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Adam,

<< Is it possible to set it to run ANSI at start-up? >>

Yes, but you'll need to create a minimal edbsrvr.ini file first in the \ProgramData folder tree:

http://www.elevatesoft.com/manual?action=viewtopic&id=edb2sql&topic=Starting_Configuring_Server

The minimal settings that you need are:

[Server]
Character Set=0

But, you'll probably also want to set up the configuration path and some other settings, while you're at it.

Tim Young
Elevate Software
www.elevatesoft.com
Tue, Apr 18 2017 12:23 PMPermanent Link

Jose Eduardo Helminsky

HPro Informatica

Adam

<<
However, EDB Server defaults to Unicode in this situation rather than ANSI.

Is it possible to set it to run ANSI at start-up?
>>
You must also deploy an EDBSRVR.INI file with the features you want.
Thu, Apr 20 2017 7:38 AMPermanent Link

Adam Brett

Orixa Systems

Jose & Tim,

Thanks for this, I really should have known this stuff by now.
Image