Problem with DBI and fork()

2001-11-01 Thread [EMAIL PROTECTED]
Hi, everybody: I am writing a Perl program on Win32 that fork some processes according to database data. I used DBI and DBD::ODBC module to connect the database. All my code is OK but it has application error (like 'this memory address could not be read') happened. If I

Re: Problem with DBI and fork()

2001-11-01 Thread qmi
Hi, All: I met the same problem as you did. The fork() function is not a real fork() in the Windows operating system. Windows doesn't have processes. fork() in Windows simply starts another Perl interpreter. Maybe this is the cause of problem. Later I move my program to a Linux

Re: Problem with DBI and fork()

2001-11-01 Thread Jenda Krynicky
From: B@ge [EMAIL PROTECTED] I am writing a Perl program on Win32 that fork some processes according to database data. I used DBI and DBD::ODBC module to connect the database. All my code is OK but it has application error (like 'this memory address could not be