A Dangerous Affair
A Dangerous Affair is a 1995 American made-for-television thriller film starring Connie Sellecca and Gregory Harrison and directed by Alan Metzger. It originally premiered on ABC on January 1, 1995.[1]
A Dangerous Affair | |
---|---|
Genre | Thriller |
Written by | Alan Rosen |
Directed by | Alan Metzger |
Starring | Connie Sellecca Gregory Harrison Christopher Meloni Rosalind Cash |
Music by | David Mansfield |
Country of origin | United States |
Original language(s) | English |
Production | |
Executive producer(s) | Robert O'Connor |
Producer(s) | Vicky Herman |
Cinematography | Zoltan David |
Editor(s) | Michael S. Murphy |
Running time | 96 minutes |
Production company(s) | Stalking Productions Greengrass Productions |
Distributor | ABC |
Release | |
Original network | ABC |
Picture format | Color |
Audio format | Stereo |
Original release | January 1, 1995 |
Plot
Sharon Blake is a successful career woman who meets real-estate agent Robert Kenzer while attending a party and they soon begin a passionate affair. But when she ends the affair, Sharon finds herself being stalked and harassed by her obsessed ex-lover who becomes violent and delusional.
Cast
- Connie Sellecca as Sharon Blake
- Gregory Harrison as Robert Kenzer
- Christopher Meloni as Tommy Moretti
- Rosalind Cash as Dr. Robertson
- John Marshall Jones as Detective Weber
- Jo de Winter as Sharon's Mother
- Robin Bartlett as Martha
gollark: Okay, this might fix it, pushed.
gollark: If the issue is what I think it could be, then it's accidentally dropping? data on the threshold of the rolling counter region incorrectly.
gollark: ```nimproc pollTargets(ctx: Ctx) {.async.} = for row in ctx.db.all("SELECT * FROM sites"): var (id, url, rollingTotalPings, rollingSuccessfulPings, rollingLatency, rollingDataSince) = row.unpack((int64, string, int64, int64, int64, Option[Time])) let res = await ctx.pollTarget(url) let threshold = getTime() # drop old data from rolling counters if rollingDataSince.isSome: for row in ctx.db.iterate("SELECT status, latency FROM reqs WHERE timestamp >= ? AND timestamp <= ? AND site = ?", rollingDataSince.get, threshold, id): let (statusRaw, latency) = row.unpack((int, int)) rollingTotalPings -= 1 rollingLatency -= latency if statusRaw <= 0: rollingSuccessfulPings -= 1 # add new data rollingTotalPings += 1 rollingLatency += res.latency if int(res.rtype) <= 0: rollingSuccessfulPings += 1 ctx.db.transaction: ctx.db.exec("UPDATE sites SET rc_total = ?, rc_success = ?, rc_latency = ?, rc_data_since = ? WHERE sid = ?", rollingTotalPings, rollingSuccessfulPings, rollingLatency, threshold, id) ctx.db.exec("INSERT INTO reqs (site, timestamp, status, latency) VALUES (?, ?, ?, ?)", id, getTime(), int(res.rtype), res.latency)```This is the core algorithm.
gollark: Actually, æææææ who even knows.
gollark: The boundary conditions could be wrong on this query.
References
- "ABC Sunday Night Movie: A Dangerous Affair". variety.com. Retrieved September 17, 2018.
External links
- A Dangerous Affair on IMDb
- A Dangerous Affair at the TCM Movie Database
- A Dangerous Affair at AllMovie
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.