1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
|
/*********************************************************************
*
* This is based on code created by Peter Harvey,
* (pharvey@codebydesign.com).
*
* Modified and extended by Nick Gorham
* (nick@easysoft.com).
*
* Any bugs or problems should be considered the fault of Nick and not
* Peter.
*
* copyright (c) 1999 Nick Gorham
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
**********************************************************************
*
* $Id: __connection.c,v 1.4 2004/09/08 16:38:54 lurcher Exp $
*
* $Log: __connection.c,v $
* Revision 1.4 2004/09/08 16:38:54 lurcher
*
* Get ready for a 2.2.10 release
*
* Revision 1.3 2003/04/10 13:45:52 lurcher
*
* Alter the way that SQLDataSources returns the description field (again)
*
* Revision 1.2 2003/04/09 08:42:18 lurcher
*
* Allow setting of odbcinstQ lib from odbcinst.ini and Environment
*
* Revision 1.1.1.1 2001/10/17 16:40:07 lurcher
*
* First upload to SourceForge
*
* Revision 1.2 2001/05/15 10:57:44 nick
*
* Add initial support for VMS
*
* Revision 1.1.1.1 2000/09/04 16:42:52 nick
* Imported Sources
*
* Revision 1.7 1999/11/28 18:35:50 ngorham
*
* Add extra ODBC3/2 Date/Time mapping
*
* Revision 1.6 1999/11/13 23:41:01 ngorham
*
* Alter the way DM logging works
* Upgrade the Postgres driver to 6.4.6
*
* Revision 1.5 1999/10/09 00:56:16 ngorham
*
* Added Manush's patch to map ODBC 3-2 datetime values
*
* Revision 1.4 1999/08/03 21:47:39 shandyb
* Moving to automake: changed files in DriverManager
*
* Revision 1.3 1999/07/04 21:05:08 ngorham
*
* Add LGPL Headers to code
*
* Revision 1.2 1999/06/19 17:51:41 ngorham
*
* Applied assorted minor bug fixes
*
* Revision 1.1.1.1 1999/05/29 13:41:09 sShandyb
* first go at it
*
* Revision 1.1.1.1 1999/05/27 18:23:18 pharvey
* Imported sources
*
* Revision 1.1 1999/04/25 23:06:11 nick
* Initial revision
*
*
**********************************************************************/
#include "drivermanager.h"
/*
* list of places to look, a $ at the start indicates
* then it following text should be looked in as a env
* variable
*/
static char const rcsid[]= "$RCSfile: __connection.c,v $ $Revision: 1.4 $";
/*
* search for the library (.so) that the DSN points to
*/
char *__find_lib_name( char *dsn, char *lib_name, char *driver_name )
{
char driver[ INI_MAX_PROPERTY_VALUE + 1 ];
char driver_lib[ INI_MAX_PROPERTY_VALUE + 1 ];
SQLSetConfigMode( ODBC_USER_DSN );
/*
* GET DRIVER FROM ODBC.INI
*/
SQLGetPrivateProfileString( dsn, "Driver", "",
driver_lib, sizeof( driver_lib ), "ODBC.INI" );
if ( driver_lib[ 0 ] == 0 )
{
/*
* if not found look in system DSN
*/
SQLSetConfigMode( ODBC_SYSTEM_DSN );
SQLGetPrivateProfileString( dsn, "Driver", "",
driver_lib, sizeof( driver_lib ), "ODBC.INI" );
SQLSetConfigMode( ODBC_BOTH_DSN );
if ( driver_lib[ 0 ] == 0 )
return NULL;
}
/*
* GET DRIVER FROM ODBCINST.INI IF ODBC.INI HAD USER FRIENDLY NAME
*/
strcpy( driver_name, "" );
if ( driver_lib[ 0 ] != '/' )
{
strcpy( driver, driver_lib );
#ifdef PLATFORM64
SQLGetPrivateProfileString( driver, "Driver64", "",
driver_lib, sizeof( driver_lib ), "ODBCINST.INI" );
if ( driver_lib[ 0 ] == '\0' )
{
SQLGetPrivateProfileString( driver, "Driver", "",
driver_lib, sizeof( driver_lib ), "ODBCINST.INI" );
}
#else
SQLGetPrivateProfileString( driver, "Driver", "",
driver_lib, sizeof( driver_lib ), "ODBCINST.INI" );
#endif
strcpy( driver_name, driver );
if ( driver_lib[ 0 ] == 0 )
return NULL;
}
strcpy( lib_name, driver_lib );
return lib_name;
}
static SQLSMALLINT sql_old_to_new(SQLSMALLINT type)
{
switch(type) {
case SQL_TIME:
type=SQL_TYPE_TIME;
break;
case SQL_DATE:
type=SQL_TYPE_DATE;
break;
case SQL_TIMESTAMP:
type=SQL_TYPE_TIMESTAMP;
break;
}
return type;
}
static SQLSMALLINT sql_new_to_old(SQLSMALLINT type)
{
switch(type) {
case SQL_TYPE_TIME:
type=SQL_TIME;
break;
case SQL_TYPE_DATE:
type=SQL_DATE;
break;
case SQL_TYPE_TIMESTAMP:
type=SQL_TIMESTAMP;
break;
}
return type;
}
static SQLSMALLINT c_old_to_new(SQLSMALLINT type)
{
switch(type) {
case SQL_C_TIME:
type=SQL_C_TYPE_TIME;
break;
case SQL_C_DATE:
type=SQL_C_TYPE_DATE;
break;
case SQL_C_TIMESTAMP:
type=SQL_C_TYPE_TIMESTAMP;
break;
}
return type;
}
static SQLSMALLINT c_new_to_old(SQLSMALLINT type)
{
switch(type) {
case SQL_C_TYPE_TIME:
type=SQL_C_TIME;
break;
case SQL_C_TYPE_DATE:
type=SQL_C_DATE;
break;
case SQL_C_TYPE_TIMESTAMP:
type=SQL_C_TIMESTAMP;
break;
}
return type;
}
SQLSMALLINT __map_type(int map, DMHDBC connection, SQLSMALLINT type)
{
int driver_ver=connection->driver_act_ver;
int wanted_ver=connection->environment->requested_version;
if(driver_ver==SQL_OV_ODBC2 && wanted_ver==SQL_OV_ODBC3) {
switch(map) {
case MAP_SQL_DM2D:
type=sql_new_to_old(type);
break;
case MAP_SQL_D2DM:
type=sql_old_to_new(type);
break;
case MAP_C_DM2D:
type=c_new_to_old(type);
break;
case MAP_C_D2DM:
type=c_old_to_new(type);
break;
}
} else if(driver_ver==SQL_OV_ODBC3 && wanted_ver==SQL_OV_ODBC2) {
switch(map) {
case MAP_SQL_DM2D:
type=sql_old_to_new(type);
break;
case MAP_SQL_D2DM:
type=sql_new_to_old(type);
break;
case MAP_C_DM2D:
type=c_old_to_new(type);
break;
case MAP_C_D2DM:
type=c_new_to_old(type);
break;
}
} else if(driver_ver==SQL_OV_ODBC3 && wanted_ver==SQL_OV_ODBC3) {
switch(map) {
case MAP_SQL_DM2D:
case MAP_SQL_D2DM:
type=sql_old_to_new(type);
break;
case MAP_C_DM2D:
case MAP_C_D2DM:
type=c_old_to_new(type);
break;
}
} else if(driver_ver==SQL_OV_ODBC2 && wanted_ver==SQL_OV_ODBC2) {
switch(map) {
case MAP_SQL_DM2D:
case MAP_SQL_D2DM:
type=sql_new_to_old(type);
break;
case MAP_C_DM2D:
case MAP_C_D2DM:
type=c_new_to_old(type);
break;
}
}
return type;
}
|