RE: Cannot Insert into SQL Server

2001-08-12 Thread Steve Howard
PROTECTED]] Sent: Sunday, August 12, 2001 7:35 PM To: [EMAIL PROTECTED] Subject: RE: Cannot Insert into SQL Server probably the placehoder answer would work. But other than that, I think this would probably work: my $sth = $dbh->prepare("insert into emails values ('$addr')")

RE: Cannot Insert into SQL Server

2001-08-12 Thread Hugh J. Hitchcock
probably the placehoder answer would work. But other than that, I think this would probably work: my $sth = $dbh->prepare("insert into emails values ('$addr')") || die "Can't prepare statement: $DBI::errstr"; embedding the value inside of double quotes or my $sth = $dbh->prepar