Corsicana, Texas Substance Use Statistics And Treatment Options
Updated on May 28, 2020 | Published on September 30, 2019
The city of Corsicana boasts low addiction-related crime numbers. However, those who need help for addiction or other mental health issues may need to travel away from the town to find the right treatment center in Texas.
Substance Use Statistics In Corsicana and Navarro County, Texas
All it takes is one life impacted by drug use for you to realize the need for addiction treatment centers. Though drug arrest and death rates in Corsicana and Navarro County are relatively low, people continue to be impacted by substance use every day. Here are some statistics:
- In December 2019, a drug raid in Navarro County led to the arrest of three people.
- The raid also seized several types of drugs, including 88 grams of methamphetamine and 20 grams of Ecstasy.
- In 2020, Navarro County had just one treatment center that offered addiction treatment services.
- Navarro County reported an opioid prescribing rate of 61.2 prescriptions per 100 residents in 2018.
- In 2017, Corsicana reported 28 DWI arrests in the first six months of the year.
- There were 39 DUI arrests in 2018, which was a 39.29 percent increase; this is a low number of DWI arrests compared to other nearby cities.
- In the first six months of 2017, Corsicana had 278 drug-related arrests.
- In 2018 there were 254 drug-related arrests, a decrease of 8.63 percent.
Introducing
virtual care
Get treatment when
and how you need it.
Addiction Treatment Options In Corsicana, Texas
Finding professional treatment in or near Corsicana is the key to success in overcoming addiction.
Regard Healthcare Texas offers residential treatment under one hour from Corsicana, and people looking for help can find additional residential and outpatient options nearby. Look for a program that offers individualized treatment planning for the best success.
Drug And Alcohol Detox Programs
Detox provides a safe place and professional intervention for the withdrawal process. This is critical to helping you avoid relapse because you’ll get professional help and medical intervention during the critical withdrawal period.
Inpatient Addiction Treatment
After detox, inpatient treatment provides support 24-hours a day with around-the-clock supervision. This additional time gives the opportunity to pursue multiple types of therapy.
In addition to evidence-based counseling, residential treatment centers use experience-based therapies, like nature or animal therapy. Inpatient treatment can be either long-term or short term. The length of the stay is personal to each patient based on their unique recovery journey.
Outpatient Drug Rehab
Your next step in the addiction treatment journey may be outpatient rehab, but some people will go straight to outpatient rehab after detox.
Outpatient programs provide the flexibility to live at home, so you can continue working if you wish. Intensive outpatient programs are a type of outpatient care that meets more regularly.
Medication-Assisted Treatment
Medication-assisted treatment (MAT) provides help for people fighting alcohol or opioid use disorders. This treatment method combines counseling and cognitive therapy with prescription medications that temper cravings and withdrawal symptoms.
MAT can be combined with other treatment options, like inpatient care, or stand on its own.
Aftercare Planning And Services
To help you stay on track after completing an inpatient or outpatient program, aftercare makes sure you get connected with local support and care. Aftercare planning is an essential part of this, so look for a treatment center that plans for aftercare services like sober-living housing.
How To Pay For Alcohol Or Drug Rehab
The cost of alcohol or drug rehab is covered by health insurance under behavioral health coverage. Most people will still need to pay out of pocket costs to cover their copay or deductible amount. Check with your insurance provider and treatment center to determine coverage.
Virtual Care Is Available With Regard Healthcare
If you need mental or behavioral health support or treatment but can’t make it to a facility, Regard Healthcare offers on-demand virtual care.
You can meet with a licensed therapist or counselor for care from the comfort of your home through a secure video app. This makes treatment accessible no matter where you are.
//$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