is it possible to use the venerable ftp.exe program to query (via network) the db?
how?
tnx!
Quering the ETP server via standard FTP client
-
- Posts: 4
- Joined: Thu Jul 23, 2009 4:21 pm
-
- Posts: 4
- Joined: Thu Jul 23, 2009 4:21 pm
Re: Quering the ETP server via standard FTP client
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
(+ 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