in reply to Re: DBI and fork() on Win32
in thread DBI and fork() on Win32

Is there really a difference between fork() and system() on Windows?

Windows has neither a fork system call nor an exec system call. Necessarily, yes, they are different.

Perl emulates fork using threads, whereas system results in a call to CreateProcess.

[ Oops, I opened the parent a while before I replied and forgot to check if it was already answered. ]