This function takes an integer (say, n ) as its first argument and returns a string of n question marks separated by commas. Here's how it breaks:
sub binds { join(",", ("?") x $_[0]);
This is probably a utility function for the database interface to create a specified number of owners ? which will later be bound to some specific values ββas part of the SQL statement.
source share