Search found 101 matches

by SlavkoDam
Tue Jul 09, 2024 1:05 am
Forum: PostGreSQL
Topic: Which version of Postgresql works on windows 7
Replies: 10
Views: 1779

Re: Which version of Postgresql works on windows 7

I wonder if it works with current versions of Xbase++. No, I'm not interested; I just wonder. Believe or not, It works with Xbase++ build 2158. Also, Alaska documentation says this: "The PostgreSQL Database Engine supports all PostgreSQL servers, starting with Version 8.2 or higher". And again, you...
by SlavkoDam
Sun Jul 07, 2024 7:03 am
Forum: PostGreSQL
Topic: Which version of Postgresql works on windows 7
Replies: 10
Views: 1779

Re: Which version of Postgresql works on windows 7

It maybe won't work with PGDBE/ISAM emulation.
Yes it works, I use it with PGDBE/ISAM emulation and its works fine. You obviously didn't try and don't know. :lol:
This version is distributed with old versions of XPP 2.0, and it works with PGDBE on Windows XP, 7, 8.1, 10.
by SlavkoDam
Sat Jul 06, 2024 11:30 am
Forum: PostGreSQL
Topic: Which version of Postgresql works on windows 7
Replies: 10
Views: 1779

Re: Which version of Postgresql works on windows 7

I use 8.3.18.

Slavko
by SlavkoDam
Thu Jun 27, 2024 12:27 pm
Forum: eXpress++ Support
Topic: ZAP and PACK command for DBF files - error Win 11
Replies: 29
Views: 3287

Re: ZAP and PACK command for DBF files - error Win 11

Hi, These WinAPI functions allow scheduling a thread(s) to run on a single or multiple processors. GetProccesAffinityMask() obtains the processors that a process and its threads are allowed to run on. SetThreadIdealProcessor() runs the thread on the specified processor. SetThreadAffinityMask() force...
by SlavkoDam
Thu Jun 27, 2024 1:24 am
Forum: eXpress++ Support
Topic: ZAP and PACK command for DBF files - error Win 11
Replies: 29
Views: 3287

Re: ZAP and PACK command for DBF files - error Win 11

Jimmy, Xbase++ can only use 1 x CPU. Multi-Threading, under Xbase++, does not use multi-CPU. This is not true at all. You should read the SetLogicalProcessor() and GetLogicalProcessorCount() functions. This is what Alaska documentation says: SetLogicalProcessor( [<nLogicalProcessor>] ) --> nOldLogic...
by SlavkoDam
Wed Jun 26, 2024 6:43 am
Forum: eXpress++ Support
Topic: ZAP and PACK command for DBF files - error Win 11
Replies: 29
Views: 3287

Re: ZAP and PACK command for DBF files - error Win 11

Victorio, If you want to speed up your massive data file processing, you have to create a multi-threaded application. In that case, the size of RAM memory is of no matter. You have to allocate to each thread a small file part or small array, and synchronize and join the results of all threads. By my...
by SlavkoDam
Fri Jun 21, 2024 11:58 pm
Forum: CXP / Web Development
Topic: How to publish an httpendpoint API in IIS
Replies: 8
Views: 1812

Re: How to publish an httpendpoint API in IIS

Hi, This is the documentation description of <cAddress> parameter for HttpEndpoint(): "The optional parameter <cAddress> is the IP address in dotted octet notation (e.g. "192.168.0.1") or hostname as a character string." So, "localhost" can be and should be replaced with your hostname. "localhost" i...
by SlavkoDam
Thu Jun 20, 2024 2:33 am
Forum: eXpress++ Support
Topic: ZAP and PACK command for DBF files - error Win 11
Replies: 29
Views: 3287

Re: ZAP and PACK command for DBF files - error Win 11

Hi, For PACK it would be something that is part of "topdown" library FUNCTION tdPack (there is full source available). It does pack with copying data to new file and later renaming it into original while original is left as backup. K-insis, the same method is used by the PACK command in Xbase++/Clip...
by SlavkoDam
Thu Jun 20, 2024 1:52 am
Forum: CXP / Web Development
Topic: How to publish an httpendpoint API in IIS
Replies: 8
Views: 1812

Re: How to publish an httpendpoint API in IIS

Hi, In that Alaska article,they used win-acme program to create a new certificate. Since you have your own certificate, you don't need that. Only have to install your certificate on your computer, in Current User on Local Machine store location. Don't use mmc.exe to view certificates, as used by Ala...
by SlavkoDam
Tue Jun 18, 2024 2:12 am
Forum: CXP / Web Development
Topic: How to publish an httpendpoint API in IIS
Replies: 8
Views: 1812

Re: How to publish an httpendpoint API in IIS

Hi, Both of your use to set certificate in HttpEndpoint() are not correct. 1. First case: oHttpEndpoint:setCertificateFromFile( "c:\mycerts\ www.megasoftrd.com.pfx", "blue5712") Is this "c:\mycerts\www.megasoftrd.com.pfx", a file on disk? If it is, rename it to something more convenient like this: "...