Devine, Texas Substance Use Statistics And Treatment Options
Updated on June 1, 2020 | Published on September 30, 2019
In 2018, Medina County authorities arrested 73 people for driving under the influence of drugs or alcohol, and two people died in DUI crashes. You can find help to stop drinking alcohol or using drugs if you live in Devine.
Substance Use Statistics In Devine And Medina County, Texas
- Although Medina County doesn’t have the highest population in Texas’ Prevention Resource Center Region 8, it had one of the three highest rates of adult liquor law arrests in 2018.
- In 2018, local authorities seized 297 doses of synthetic narcotics, 60 doses of codeine, and 56 doses of tranquilizers in
- Medina County. They also seized 50 ounces of packaged marijuana and 7 ounces of methamphetamine.
- In 2018, Medina County had a 17.7 percent increase in the number of adolescents who received substance abuse and mental health treatment.
- Medina County had 42 DUI auto accidents in 2017, with two DUI fatalities, a slight decrease from 2016 when 5 people died in DUI accidents.
- In 2017, 24 people were treated in Medina County emergency rooms for opioid overdoses.
Introducing
virtual care
Get treatment when
and how you need it.
Addiction Treatment Options In Devine, Texas
You can find outpatient treatment and medication-assisted treatment (MAT) in Devine, and other forms of treatment in San Antonio and surrounding communities.
The National Institute on Drug Abuse (NIDA) recommends individualized substance use disorder treatment. Treatment that is tailored to meet your needs will help you to recover, which may include detox, aftercare, outpatient services, and more.
Detox Programs
Medical supervision is important during detox to help you remove drugs and alcohol from your system safely and comfortably.
Most detox programs take place in an inpatient treatment setting. However, some detox programs can take place in outpatient clinics. Medications can also help ease withdrawal symptoms during a detox program.
Devine Residential Care
This treatment provides a safe, drug- and alcohol-free environment where you can begin your recovery.
Inpatient programs incorporate evidence-based therapy, like cognitive behavioral therapy (CBT) or dialectical behavioral therapy (DBT). A residential or inpatient program offers 24-hour, 7 days a week support.
You can also find experiences in residential treatment programs that can help you discover who you are without alcohol or drugs. Residential treatment can be gender specific, and can also help people with dual behavioral health and substance use disorder diagnoses.
Outpatient Drug Rehab
Most outpatient programs meet two to three times a week for two to three hours. They can incorporate evidence-based therapy along with peer group support.
Outpatient treatment programs are more or less intensive depending on how often they meet. You can choose an outpatient program if you know you have a supportive, drug- and alcohol-free home environment.
Medication-Assisted Treatment
You may have heard people say that medication-assisted treatment (MAT) just replaces one drug with another. MAT programs don’t do that. They combine FDA-approved medications with counseling and peer groups.
MAT programs support recovery from opioid, alcohol, and tobacco use disorders. MAT can be part of an inpatient program as well as outpatient treatment.
Aftercare Planning And Services
The National Institute on Drug Abuse (NIDA) says that the goal of treatment is to help you stop using drugs/alcohol and continue to maintain sobriety. Aftercare planning should meet your individual needs and provide services that will benefit your ongoing sobriety.
How To Pay For Alcohol Or Drug Rehab
A combination of private health insurance plans and direct payment can pay for most drug and alcohol treatment. You can work with your insurer and your treatment provider to learn which services will be covered. You can find options to pay for the treatment you need.
Virtual Care Is Available With Regard Healthcare
You can receive confidential, virtual care for substance use treatment and behavioral health through Regard Healthcare. Find care on your own schedule that is completely discreet and tailored to your needs and schedule.
Get Help Today
Located about five hours northeast of Devine in the Dallas area, Regard Healthcare Texas provides a holistic range of addiction and mental health treatment services. With caring and experienced staff, we offer a staff-to-patient ratio that is almost 1:1.
Our facility also offers a serene 65-acre campus and therapeutic community that can help you focus completely on your recovery. To learn more about our facilities, please contact us today.
//$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
San Antonio Area Council On Alcohol And Drug Awareness: Texas PRC Region 8 - https://prcregion8.org/wp-content/uploads/2019/10/2019-RNA-Region-8-.pdf