Help for this page

Select Code to Download


  1. or download this
    my $Date = 20170121;     # Parsed from file
    my $file = Testfilename; # Parsed from file
    
  2. or download this
    my $sql = "INSERT INTO TableName(Date,FileName) VALUES($Date,$file)";
    my $stmt = $settle_dbh->prepare($sql);
    $stmt->execute();
    
  3. or download this
    DBD::ODBC::st execute failed: [Microsoft][ODBC SQL Server Driver]Inval
    +id precision value (SQL-HY104)
    
  4. or download this
    print $sql;
    INSERT INTO TableName(Date,FileName) VALUES(20170121,Testfilename)