Error during command authentication.

Error - unable to initiate communication with LISTSERV (errno=10061, phase=CONNECT, target=127.0.0.1:2306). The server is probably not started. LISTSERV - MACSCRPT Archives - LISTSERV.DARTMOUTH.EDU

I'm trying to update an old applescript that's working with filemaker  
6 to work with filemaker 8.

with Filemaker 6 this was working:
---
tell application "FileMaker Pro"
   tell database 1
     tell layout 0
       tell current record
         set _town to (get data of cell "Town")
       end tell
     end tell
   end tell
end tell
--
but with Filemaker 8 I can't use layout 0, nor the current layout by  
name (i.e. layout "thelayout"),
though it works without any layout (Is this related to the new  
"table"-stuff?)

Filemaker 8:
--
tell application "FileMaker Pro"
   tell database 1
     --tell layout 0
     tell current record
         set _town to (get data of cell "Town")
     end tell
     --end tell
   end tell
end tell
--

I'm not sure that the currently displayed layout will show all fields  
referenced by the script, and I would like to not having to display a  
different layout just for script to get the values, as the script is  
to be triggered by a button.

Any clues?
(I read somewhere that layout 0 was still supported in Filemaker 7  
but I have not found any way to use it)