Help for this page

Select Code to Download


  1. or download this
    use DBI;
    $dbh = connect(.........);
    $dbh->prepare('INSERT INTO weathercache (latitude, longitude, weather,
    + cached) VALUES (?, ?, ?, NOW())')->execute(50.530998, -4.949000, '')
    +;
    
  2. or download this
    $sth = $dbh->prepare('SELECT * FROM weathercache WHERE latitude = 50.5
    +30998 AND longitude = -4.949000')->execute();
    
  3. or download this
    $sth = $dbh->prepare('SELECT * FROM weathercache WHERE latitude = ? AN
    +D longitude = ?')->execute(50.530998, -4.949000);