Re: PITR on Win32 - Archive and Restore

Поиск
Список
Период
Сортировка
От Andrew Dunstan
Тема Re: PITR on Win32 - Archive and Restore
Дата
Msg-id 41177EDF.8020003@dunslane.net
обсуждение исходный текст
Ответ на Re: PITR on Win32 - Archive and Restore  ("Christian Klemke" <Christian.Klemke@t-online.de>)
Список pgsql-hackers-win32
Christian,

what you have not done is to follow the context of the discussion. This
command is a configuration option, and thus executed with a system()
call. We do not have the luxury of hardcoding it available to us.

Note that system() actually calls cmd.exe, so your previous comment
about needing to use cmd /c is also wrong.

cheers

andrew


Christian Klemke wrote:

>Guys,
>
>did you notice my earlier CopyFile / CopyFileEx posting (at about 10:20
>German time) ?
>If you want to stick with an external copy executable (which I don't quite
>understand), just go and write one yourself and provide it for Windows
>users. Leaving aside the neccessary checks, it might be as simple as:
>
>#include <windows.h>
>int main(char* args[]) {
>  return CopyFile(args[0],args[1],TRUE);
>}
>
>Adding a proprietary parser for secure handling of quotes (to deal of paths
>containing space)s should be simple, I'm sure you have adequate functions in
>your Postgres library. Link it to a file called copy.exe or cp.exe or
>wahtever and add it to the PGBIN directory.
>
>
>
>
>

В списке pgsql-hackers-win32 по дате отправления:

Предыдущее
От: "Merlin Moncure"
Дата:
Сообщение: Re: PITR on Win32 - Archive and Restore
Следующее
От: Andrew Dunstan
Дата:
Сообщение: Re: PITR on Win32 - Archive and Restore