Addiction and Treatment Statistics for Delaware
Updated on April 15, 2019
The National Institute on Drug Abuse reports the rate of opioid-related overdose deaths in the state of Delaware is significantly higher than the national average, at 16.9 per 100,000 persons. Fortunately, the state of Delaware is home to multiple addiction treatment centers that provide top-notch services to individuals with substance use disorders.
Delaware Substance Abuse Statistics
With a higher-than-average rate of substance abuse, Delaware views addiction as a grave problem. These statistics highlight how serious the issue has become in Delaware:
- The Substance Abuse and Mental Health Services Administration (SAMHSA) report the rate of heroin use among people over the age of 12 is more than three times the national average.
- SAMHSA also reports an annual average of 46,000 people admit to having an alcohol use disorder.
- According to the National Institute on Drug Abuse, 154 people died of opioid overdoses in 2016.
- Delaware Health and Social Services report that, in 2014, only eight states in the U.S. had an overdose death rate higher than the rate in Delaware.
Choosing The Right Rehab Program In Delaware
When looking for a rehab facility in Delaware, there are many things to consider. Inpatient programs are more structured and intensive than outpatient programs, and allow a person to focus on growth and healing. To make an informed decision, consider the following:
- Accreditation: Addiction treatment programs that meet quality standards can become accredited by the Joint Commission, the Commission on the Accreditation of Rehab Facilities (CARF), and the state of Delaware, which is a sign of effective treatment.
- Evidence-Based Approaches: Evidence-based approaches are treatment methods that have been studied and proven effective for addiction, like using certain medications and therapies.
- Length/Location: Some rehab centers offer short-term treatment programs, while others offer long-term programs (longer than 30 days). Location should also be considered, because some effective programs may require travel.
- Aftercare and Alumni Services: Aftercare and alumni services are supportive services available to those who have completed a rehab program. Addiction is a lifelong disease, and these services can mean the difference between relapse and long-term sobriety.
- Payment: Some insurance plans cover some or all of the cost of a rehab program. Look into the individual insurance policy to see what’s covered. Private pay, or various loan programs, can also help cover the cost.
Delaware Drug And Alcohol Rehab Services
Different treatment centers in Delaware provide different programs and services. Although offerings vary, there are some essential components of quality care. People may benefit from more than one of these services:
- Drug and Alcohol Detox Programs: During detoxification, there is a high risk for relapse because of intense withdrawal symptoms and cravings. Clients enrolled in a drug and alcohol detox program are provided with medical supervision, support, and a safe environment to prepare them for further treatment.
- Medication-Assisted Treatment (MAT): Medication-assisted treatment provides people with medication to reduce cravings and lessen dependence to alcohol and opioids. Medications are usually combined with other treatments, like psychotherapy.
- Behavioral Therapy: Behavioral therapy is the most common method used in addiction treatment, teaching people how to change thought patterns and behaviors related to drugs or alcohol. People also learn how to cope with environmental triggers they may face after leaving the program.
- Treatment for Co-Occurring Disorders (Dual Diagnosis): Many clients who struggle with addiction are also diagnosed with a mental health condition that contributes to their drug use, such as an anxiety disorder. Dual diagnosis programs address both conditions at once by providing integrated care or multiple professionals.
Finding Addiction Treatment
Not all addiction treatment programs give clients the same chance of a successful recovery, so choosing a high-quality treatment center should always be a priority. When comparing different options, people should always consider their goals and preferences with regard to treatment. Clients should also be willing to travel, if necessary, in order to get the best treatment.
//$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
Delaware Health & Social Services - The Delaware Opioid Epidemic
National Institute on Drug Abuse - Delaware Opioid Summary
Substance Abuse and Mental Health Services Administration - Behavioral Health Barometer Delaware