Search found 132 matches

by k-insis
Sun Apr 13, 2025 11:00 pm
Forum: Xbase++ 2.0
Topic: Windows 11 Double Monitor problem
Replies: 1
Views: 459

Re: Windows 11 Double Monitor problem

A update to Martin Question Not full solution, but fixed 'windows blinks' by using HIDE in dcgetoptions then repositioning window and displaying it again. DCGETOPTIONS HIDE DCREAD GUI TITLE "Some Window Title" FIT ; OPTIONS GetOptions; ENTEREXIT ; EVAL {|o| o:SetPos(CalculateIdealPos(o), o:Show()} ;...
by k-insis
Thu Apr 10, 2025 11:12 pm
Forum: eXpress++ Support
Topic: ADS
Replies: 5
Views: 264

Re: ADS

Virtualize old server, put it onto new hardware, remove other (unecessary) services and be done with it. And it is sysadmins job. We have a user moving servers, and ADS. Anybody know what has to be done to handle that, from the ADS side. All I know is where the install files are, but not sure that h...
by k-insis
Tue Apr 08, 2025 11:41 pm
Forum: PostGreSQL
Topic: Database backup and restore in pg xbade++
Replies: 9
Views: 8385

Re: Database backup and restore in pg xbade++

Mr. Joe you are wrong in basic concept of how pgdbe server access works. This is client server and you do not execute shell commands via SQL command interface as that would be a huge security no-no if implemented. To start backups/restores from your application you have to do that on client side or ...
by k-insis
Tue Apr 01, 2025 2:12 am
Forum: PostGreSQL
Topic: Database backup and restore in pg xbade++
Replies: 9
Views: 8385

Re: Database backup and restore in pg xbade++

This is not advisable method by Postgresql official documentation: https://www.postgresql.org/docs/16/backup-file.html You may directly create a backup of the physical files where your database is stored. Open pgAdmin, select your database and open the query tool. Type this command: show data_direct...
by k-insis
Thu Mar 27, 2025 11:41 pm
Forum: PostGreSQL
Topic: Database backup and restore in pg xbade++
Replies: 9
Views: 8385

Re: Database backup and restore in pg xbade++

- Backup is done with pg_dump utility - Restore is done with psql / pg_restore utilities. - Partial backups / restores on schema, table, procedures, views, etc are of course doable. Those utils handle every complexity that is on server. Interactive way can be done in dbeaver . Just out of curiosity ...
by k-insis
Wed Mar 19, 2025 5:03 am
Forum: eXpress++ Support
Topic: ODBC driver
Replies: 4
Views: 26948

Re: ODBC driver

There is thread somewhere why there is download problem sometimes on this forum. Try this github for vfoxpro ODBC driver https://github.com/VFPX/VFP9SP2Hotfix3/blob/master/ODBC_Release_Notes.md Hi, Thanks but I can't download it. When I click on it the counter goes one up, but nothing happens. :-(
by k-insis
Sun Feb 02, 2025 11:50 pm
Forum: PostGreSQL
Topic: BOOLEAN FIELDS TRANSLATED TO '1' or '0' insteat of .t. or .f. in PG 16
Replies: 1
Views: 12394

Re: BOOLEAN FIELDS TRANSLATED TO '1' or '0' insteat of .t. or .f. in PG 16

You configured "Bools as char" in your ODBC data source.

Open 32bit control panel, go to configuration options, first page under "Data Type Options" uncheck "Bools as char"
by k-insis
Mon Dec 09, 2024 11:11 pm
Forum: Xbase++ 2.0
Topic: ZIP library
Replies: 12
Views: 40995

Re: ZIP library

12GB is no issues as long OS can read data and serve chunks of it to software and not an ancient binaries are used so imho you are pretty safe with CK control. Mind almost all .zip compressor are single thread-single core and many still don't use modern code ; so speed of compression MBps will vary....
by k-insis
Fri Dec 06, 2024 2:44 am
Forum: Xbase++ 2.0
Topic: ZIP library
Replies: 12
Views: 40995

Re: ZIP library

Client side with Shell.Application object ; uses Windows OS integrated zip routines ; UTF file naming and UNC support is solid; good UI feedback for end user .

On server side zip from info-zip OSS project.
by k-insis
Fri Nov 22, 2024 5:03 am
Forum: PostGreSQL
Topic: Upsizing Analysis
Replies: 8
Views: 35025

Re: Upsizing Analysis

There is way. Multiple simultaneous processes might be solution as this looks single - threaded - go from one to another and do upload job. So much of CPU and RAM resources are wasted as usual with xbase. Do a dbfupsize config in individual sets for large DBF tables and one for everything small. The...