Quering the ETP server via standard FTP client

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
franzauker
Posts: 4
Joined: Thu Jul 23, 2009 4:21 pm

Quering the ETP server via standard FTP client

Post by franzauker »

is it possible to use the venerable ftp.exe program to query (via network) the db?
how?

tnx!
David
Developer
Posts: 430
Joined: Tue Mar 17, 2009 1:42 am

Re: Quering the ETP server via standard FTP client

Post by David »

franzauker
Posts: 4
Joined: Thu Jul 23, 2009 4:21 pm

Re: Quering the ETP server via standard FTP client

Post by franzauker »

In Win32 it can be done via something like that (ETP server 192.168.0.2)
(+ tail for trimming unwanted lines)

@echo off >nul
echo.>ftpcommand.txt
echo literal QUERY 0 2147483647 0 0 0 %1>>ftpcommand.txt
echo quit>>ftpcommand.txt
ftp -s:ftpcommand.txt 192.168.0.2
Post Reply