avilner has asked for the wisdom of the Perl Monks concerning the following question:
and so are the values - nothing special. all varchars (doing a POC). Values are in an array, matching to the number of arguments insert expects. When I run this:INSERT INTO raw ( CHROM ,POS ,ID ,REF ,ALT ,QUAL ,FILTER ,INFO ,FORMAT ) values (?, ?, ?, ?, ?, ?, ?, ?, ?);
I getmy $sth = $dbh->prepare($sql); $sth->execute( @values );
as output. Since I am running in a command window and I need to insert millions of rows, HERE as the output is quite annoying. It started happening - for now reason (that I can think of), and it seems that the execute statement is what is triggering it. SQL table has no triggers or anything of that sort, and a simple insert via SQL Server Management studio results in no output (as expecte). Any ideas would be much appreciated!!!HERE
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: "HERE" displays in output
by GotToBTru (Prior) on Jun 18, 2015 at 03:52 UTC | |
by avilner (Initiate) on Jun 18, 2015 at 13:02 UTC | |
Re: "HERE" displays in output
by kennethk (Abbot) on Jun 18, 2015 at 17:22 UTC | |
by marinersk (Priest) on Jun 18, 2015 at 20:26 UTC | |
Re: "HERE" displays in output
by Anonymous Monk on Jun 18, 2015 at 03:41 UTC | |
Re: "HERE" displays in output
by sn1987a (Curate) on Jun 18, 2015 at 17:30 UTC |