When I create several recordset with a same connection object, I generate as many new connections to the level of server SQL. How to make so that there is only one connection of generated?

Example:

Conn.Execute("DELETE FROM TempAnswer WHERE ApplicantID=" & Session.SessionID)

Conn.Execute("DELETE FROM TempMatchedProfile_WEB WHERE SessionID=" & Session.SessionID)

Conn.execute("DELETE FROM Active_Conn WHERE SessionID=" & Session.SessionID)