Addiction and Treatment Statistics for Virginia
Updated on April 24, 2019
The Commonwealth of Virginia faces many substance abuse challenges including an increase in alcohol use among adults and adolescents. Thankfully, Virginia provides quality addiction treatment programs to help individuals combat the negative effects of drugs and alcohol.
Finding a rehab center starts with proper research. The state of Virginia has many treatment options to choose from, including some that cater to specific groups like women, adolescents, and veterans.
Virginia Substance Abuse Statistics
Virginia has seen a rise in both opioid and alcohol use. In response to the opioid crisis, the governor established a task force to control the escalating overdose rate. Consider some vital statistics from Virginia:
- In a 2015 Virginia Middle School Risk Behavior Survey, 7.9 percent of respondents reported drinking alcohol before age eleven.
- In 2015, almost 650,957 people in Virginia admitted to illicit drug use at some point in time.
- Studies indicate that 27 percent of military personnel returning from Iraq are either already abusing alcohol or at risk for substance abuse.
- Marijuana use among high school students is at 30 percent, which is lower than the national average.
- Forty-eight percent of the students surveyed in 2015 smoke cigarettes. The national average is 45 percent.
Introducing
virtual care
Get treatment when
and how you need it.
Choosing the Right Rehab Program in Virginia
The state of Virginia takes a progressive stance against substance abuse and offers cost-effective, state-sponsored treatment options to residents. When looking for the right rehab, understanding what criteria to look for is essential:
- Accreditation: Many treatment centers are licensed by the state of Virginia, or they may have third-party accreditation from CARF or the Joint Commission. Accreditation signifies quality care and treatment.
- Evidence-based Approaches: Evidence-based approaches are the gold standard for substance abuse treatment and include behavioral therapies. Treatment has been studied, researched, and shown to be effective.
- Length/Location: Inpatient treatment can last anywhere from 30 to 120 days, but depends on individual needs. Families should look for a center that offers them what they need, no matter where it’s located.
- Aftercare and Alumni Services: Some programs provide aftercare and alumni services, which may include sober living houses, outpatient treatment, and peer support groups like AA or NA.
- Payment: Typically, insurance providers will cover some portion of rehab programs. Contact a representative of the insurance plan to find out which services are covered.
Virginia Drug and Alcohol Rehab Services
Virginia rehab centers often offer different services. It’s critical to understand how each type of plan operates. Some important services and programs include:
- Drug and Alcohol Detox Programs: Treatment facilities may offer medically managed detox therapy to control uncomfortable withdrawal symptoms. Detox programs create a safe environment for withdrawal before transitioning into addiction treatment.
- Medication-assisted Treatment (MAT): FDA-approved medications help to reduce cravings and lessen dependence to alcohol and opioids. This treatment is always combined with behavioral therapy.
- Behavioral Therapy: Behavioral therapy is key to many addiction treatment plans. With it, people learn to understand more about their addiction and find ways to avoid using drugs or alcohol.
- Treatment for Co-Occurring Disorders (Dual Diagnosis): Often those with addiction have an underlying mental health problem, like depression, that contributes to substance abuse. Treating both the addiction and mental health condition at the same time creates the best chances for recovery.
Finding Addiction Treatment
Finding the right rehab center takes time and research, but the state of Virginia provides individuals and families with helpful resources. Plan to travel if necessary when looking at treatment centers, and carefully consider what each has to offer to make an informed decision.
//$startTime = microtime(true);
require_once 'inc/db.php';
require_once 'inc/lookups.php';
$requestLookup = $requestLookup ? $requestLookup : sanitize_text_field($_GET['lookup']);
$requestState = $requestState ? $requestState : sanitize_text_field($_GET['state']);
$requestCity = $requestCity ? $requestCity : sanitize_text_field($_GET['city']);
$requestLocation = $requestLocation? $requestLocation : sanitize_text_field($_GET['location']);
$dataOnly = $dataOnly ? $dataOnly : (bool) $_GET['dataonly'];
if ($requestLookup) {
if (array_key_exists($requestLookup, $lookupGroups)) {
$lookup = $requestLookup;
if (is_array($lookupGroups[$lookup])) {
$lookupGroup = $lookupGroups[$lookup];
}
$lookupName = $lookupTitles[$lookup];
}
if (!$lookup) {
$err['lookup'] = "Sorry, we couldn't find that category.";
}
}
if ($requestState && $lookup) {
$stateSlug = str_replace('-'.$requestLookup, '', $requestState);
$state = Model::factory('State')->where('url', $stateSlug)->find_one();
if (!$state) {
$err['state'] = "Sorry, we couldn't find that state.";
$is404 = true;
}
}
if ($requestCity && $state) {
$city = $state->city()->where('url', $requestCity)->find_one();
if (!$city) {
$err['city'] = "Sorry, we couldn't find that city.";
$is404 = true;
}
}
if ($requestLocation && $city ) {
/* Fetch Location Only under primary Lookup*/
if($lookup=='rehab-centers')
$location = $city->location()->where('url', $requestLocation)->find_one();
if (!$location) {
$err['location'] = "Sorry, we couldn't find that location.";
$is404 = true;
}
/* Special Header Addons - Locations Under Sub Lookups*/
if($lookup!='rehab-centers')
$sublookup_head = true;
}
/***
* Let's work backwards with what we have.
***/
// City Table Column Selector :: Num Locations by Lookup
switch($lookup){
case 'inpatient-rehab-centers' : $col = 'num_inpa'; break;
default : $col = 'num_locations';
}
if ($location) {
$attributes['S'] = $attributes['T'] = $attributes['D'] = $attributes['P'] = array();
foreach ($location->attribute()->find_many() as $attribute) {
$attributes[$attribute->type][] = $attribute;
}
$mapAddress = urlencode($location->location_street1 . ' ' . $location->location_street2 . ' ' . $city->name . ' ' . $state->abbr);
if ($dataOnly) {
// Reserved for location data-only
} else {
include_once 'templates/location.php';
}
}
else if ($city) {
if ($lookup == 'inpatient-rehab-centers') {
// Special case; exclude outpatient rehabs from inpatient list
$locations = ORM::for_table('location')
->raw_query('SELECT location.*
FROM location JOIN attribute_location ON location.id = attribute_location.location_id
WHERE location.city_id = ?
AND attribute_location.attribute_id IN (25,26,27)
AND location.id NOT IN (
SELECT location_id
FROM attribute_location
WHERE attribute_id = 23
)
GROUP BY location.id', array($city->id))
->find_many();
}
elseif ($lookupGroup) {
$built_re_state = explode('-'.$requestLookup,$requestState)[0];
$build_redirect = '/rehab-centers/'.$built_re_state.'-rehab-centers/'.$requestCity.'/';
header("HTTP/1.1 301 Moved Permanently");
header('Location: https://www.rehabcenter.net' . $build_redirect);
exit();
// Standard lookups
//$locations = ORM::for_table('location')->where('location.city_id', $city->id)->join('attribute_location', array('location.id', '=', 'attribute_location.location_id'))->where_in('attribute_location.attribute_id', $lookupGroup)->group_by('location.id')->find_many();
}
else {
// Show all rehab centers
$locations = $city->location()->find_many();
}
/* Show City Page Only if # Segments exist*/
if(count($segments)==3&&!$is404){
if ($dataOnly) {
// Reserved for city data-only
include_once 'templates/city-data.php';
} else {
include_once 'templates/city.php';
}
}
}elseif ($state) {
if ($lookup == 'inpatient-rehab-centers') {
// Special case; exclude outpatient rehabs from inpatient list
$cities = ORM::for_table('city')
->raw_query('SELECT city.*
FROM city
JOIN location ON city.id = location.city_id
JOIN attribute_location ON location.id = attribute_location.location_id
WHERE city.state_id = ?
AND attribute_location.attribute_id IN (25,26,27)
AND location.id NOT IN (
SELECT location_id
FROM attribute_location
WHERE attribute_id = 23
)
GROUP BY city.id', array($state->id))
->find_many();
}
else if ($lookupGroup) {
$cities = ORM::for_table('city')->select('city.*')->where('city.state_id', $state->id)->join('location', array('city.id', '=', 'location.city_id'))->join('attribute_location', array('location.id', '=', 'attribute_location.location_id'))->where_in('attribute_location.attribute_id', $lookupGroup)->group_by('city.id')->find_many();
}
else {
$cities = $state->city()->find_many();
}
// Let's make sure we only have # segments on the URL array(3)
if(count($segments)==2){
if ($dataOnly) {
include_once 'templates/state-data.php';
} else {
include_once 'templates/state.php';
}
}
}
else if ($lookup&&!$is404) {
$states = Model::factory('State')->find_many();
if ($dataOnly&&!$is404) {
include_once 'templates/lookup-data.php';
} else {
include_once 'templates/lookup.php';
}
}
else {
$is404 = true;
header('HTTP/1.0 404 Not Found');
}
// $endTime = microtime(true);
//echo '';
?>
Article Sources
State of Virginia—Virginia Veteran and Family Support: Substance Abuse - https://www.dvs.virginia.gov/virginia-veteran-and-family-support-2/resources/substance-abuse
U.S. Dept. of Health and Human Services—Virginia Adolescent Substance Abuse Facts - https://www.hhs.gov/ash/oah/facts-and-stats/national-and-state-data-sheets/adolescents-and-substance-abuse/virginia/index.html
Virginia Dept. of Behavioral Health & Developmental Services—Biennial Report on Substance Abuse Services - http://dbhds.virginia.gov/library/substance%20abuse%20services/2015biennialreportonsubstanceabuseservices.pdf
Virginia Dept. of Behavioral Health & Developmental Services—2016 Annual Report of the Substance Abuse Services Council - https://rga.lis.virginia.gov/Published/2016/RD336/PDF