Search found 12 matches: connects

Searched query: connects

by TimStone
Thu Oct 31, 2024 7:29 pm
Forum: FiveWin for Harbour/xHarbour
Topic: RDS (Remote Desktop) and FW programming
Replies: 10
Views: 1197

Re: RDS (Remote Desktop) and FW programming

... attached peripherals. I access it with MRD also.

My main computer is an Apple MacMini, running the M2 processor and of course plenty of RAM. It connects to a 24" Mac Studio Monitor with incredibly high resolution. It has Remote Desktop installed to connect to the other two computers, plus my ...
by Otto
Sun Oct 20, 2024 9:35 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Route from Fiber Optic to the Web Server
Replies: 3
Views: 487

Route from Fiber Optic to the Web Server

... to the Web Server:
Fiber Optic Line to the NTU (Network Termination Unit):

The fiber optic line enters your home from the provider's network and connects to the NTU (Network Termination Unit), also known as the fiber termination box.
This unit acts as the connection point between the provider's ...
by Otto
Sun Oct 20, 2024 6:39 pm
Forum: mod_harbour
Topic: Route from Fiber Optic to the Web Server
Replies: 0
Views: 4126

Route from Fiber Optic to the Web Server

... to the Web Server:
Fiber Optic Line to the NTU (Network Termination Unit):

The fiber optic line enters your home from the provider's network and connects to the NTU (Network Termination Unit), also known as the fiber termination box.
This unit acts as the connection point between the provider's ...
by Rick Lipkin
Fri Jul 26, 2024 4:46 pm
Forum: FiveWin for Harbour/xHarbour
Topic: DBF File Format - Considerations A Secure Option
Replies: 15
Views: 2230

Re: DBF File Format - Considerations A Secure Option

... append and delete from and create difficult reports and when done .. just delete the temp report .dbf and its indexes

I like FiveWin because it connects to the most popular Sql databases and I can use .dbf to manipulate data locally ... Fivewin is the PERFECT development environment ..

Rick Lipkin
by cmsoft
Thu Feb 08, 2024 12:41 am
Forum: FiveWin for Harbour/xHarbour
Topic: USB reading/writing as Com port
Replies: 3
Views: 468

Re: USB reading/writing as Com port

Generally, when it is necessary to manage a device that connects via the USB port but responds to a serial structure, there are serial port emulators.
Here in Argentina, there are fiscal drivers that use that functionality, and they can be managed with Fivewin's COM port management functions.
by nageswaragunupudi
Wed Jan 31, 2024 8:28 pm
Forum: FiveWin for Harbour/xHarbour
Topic: SQL connection
Replies: 6
Views: 1184

Re: SQL connection

... Close()
endif

return nil

https://imagizer.imageshack.com/v2/xq70/923/v9evzI.png

You can test this program from your computer.
This program connects to a FWH's MsSql server in the cloud. This server is provided for testing by our users.
After testing this, you can use similar logic on your ...
by nageswaragunupudi
Mon Sep 04, 2023 4:56 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Lost connection to MySQL server during query
Replies: 40
Views: 15931

Re: Lost connection to MySQL server during query

Our FWH maria library initially connects to the server with MYSQL_OPT_RECONNECT option.
As many other users advised, time out or sleeping and any such reasons are irrelevant.
Even if timed out, any communication with the server ( eg even a simple oCn:Ping() ) will automatically wake up the connection ...
by nageswaragunupudi
Wed Aug 09, 2023 7:40 am
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to Excel Sheet, without Excel, using ADO ?
Replies: 50
Views: 5948

Re: DBF to Excel Sheet, without Excel, using ADO ?

using your Sample i got
Obviously the file should be an existing and valid xlsx file. Otherwise with what ADO connects?
If the file is a valid xlsx file, FW_AdoImportFromDBF() works.
by nageswaragunupudi
Tue Jun 27, 2023 1:36 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FiveDBU ODBC and PostgreSQL
Replies: 8
Views: 775

Re: FiveDBU ODBC and PostgreSQL

... in the above sample.
local cStr := "Provider=MSDASQL;Driver={PostgreSQL ODBC Driver(UNICODE)};Server=localhost;Port=5432;Database=postgres;Uid=postgres;Pwd=India@1947;"

oCn := FW_OpenAdoConnection( cStr, .t. )

Now the above program connects using ODBC and works exactly the same way as above.
by nageswaragunupudi
Wed Jun 07, 2023 11:56 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin and ADO
Replies: 36
Views: 6457

Re: Fivewin and ADO

... i use these ConnectionString with Fivewin

Yes

oCn := FW_OpenAdoConnection( cYourConnectionString, .t. )

Syntax:
FW_OpenAdoConnection( cFWConnectSpec[or]cYourConnectionString, [lShowError],[@oError]) --> oCn
// oCn is NIL if failed


FW Connection Spec is an array:
{ cRDBMS, cServer, cDB ...
by wartiaga
Wed Mar 29, 2023 2:00 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Ftp uploading files
Replies: 5
Views: 498

Ftp uploading files

Hi,

Is anyone using any ftp classes that actually work? I tested some examples here on the forum and it even connects but it sends the file with zero size.

Thanks in advance.
by Marc Venken
Sun Dec 18, 2022 2:53 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Read API data one by one or in block
Replies: 1
Views: 326

Read API data one by one or in block

Hello,

Reading API data from server can be done one by one (each record connects, retrieve data and proces) This is what I do now

Or should I consider to read 200 or more records and process that string of data. Here is the problem that the Hash fill will be large and much more difficult to process ...