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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
|
/*********************************************************************
*
* 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: SQLDriversW.c,v 1.8 2004/07/25 00:42:02 peteralexharvey Exp $
*
* $Log: SQLDriversW.c,v $
* Revision 1.8 2004/07/25 00:42:02 peteralexharvey
* for OS2 port
*
* Revision 1.7 2003/11/13 15:12:53 lurcher
*
* small change to ODBCConfig to have the password field in the driver
* properties hide the password
* Make both # and ; comments in ini files
*
* Revision 1.6 2003/10/30 18:20:45 lurcher
*
* Fix broken thread protection
* Remove SQLNumResultCols after execute, lease S4/S% to driver
* Fix string overrun in SQLDriverConnect
* Add initial support for Interix
*
* Revision 1.5 2002/12/05 17:44:30 lurcher
*
* Display unknown return values in return logging
*
* Revision 1.4 2002/07/24 08:49:51 lurcher
*
* Alter UNICODE support to use iconv for UNICODE-ANSI conversion
*
* Revision 1.3 2002/05/21 14:19:44 lurcher
*
* * Update libtool to escape from AIX build problem
* * Add fix to avoid file handle limitations
* * Add more UNICODE changes, it looks like it is native 16 representation
* the old way can be reproduced by defining UCS16BE
* * Add iusql, its just the same as isql but uses the wide functions
*
* Revision 1.2 2001/12/13 13:00:32 lurcher
*
* Remove most if not all warnings on 64 bit platforms
* Add support for new MS 3.52 64 bit changes
* Add override to disable the stopping of tracing
* Add MAX_ROWS support in postgres driver
*
* Revision 1.1.1.1 2001/10/17 16:40:05 lurcher
*
* First upload to SourceForge
*
* Revision 1.4 2001/05/15 10:57:44 nick
*
* Add initial support for VMS
*
* Revision 1.3 2001/04/12 17:43:36 nick
*
* Change logging and added autotest to odbctest
*
* Revision 1.2 2001/01/02 09:55:04 nick
*
* More unicode bits
*
* Revision 1.1 2000/12/31 20:30:54 nick
*
* Add UNICODE support
*
*
**********************************************************************/
#include "drivermanager.h"
static char const rcsid[]= "$RCSfile: SQLDriversW.c,v $";
#define BUFFERSIZE 1024
SQLRETURN SQLDriversW(
SQLHENV henv,
SQLUSMALLINT fdirection,
SQLWCHAR *sz_driver_desc,
SQLSMALLINT cb_driver_desc_max,
SQLSMALLINT *pcb_driver_desc,
SQLWCHAR *sz_driver_attributes,
SQLSMALLINT cb_drvr_attr_max,
SQLSMALLINT *pcb_drvr_attr )
{
DMHENV environment = (DMHENV) henv;
char buffer[ BUFFERSIZE + 1 ];
char object[ INI_MAX_OBJECT_NAME + 1 ];
SQLRETURN ret = SQL_SUCCESS;
SQLCHAR s1[ 100 + LOG_MESSAGE_LEN ];
if ( !__validate_env( environment ))
{
dm_log_write( __FILE__,
__LINE__,
LOG_INFO,
LOG_INFO,
"Error: SQL_INVALID_HANDLE" );
return SQL_INVALID_HANDLE;
}
function_entry( environment );
if ( log_info.log_flag )
{
sprintf( environment -> msg, "\n\t\tEntry:\
\n\t\t\tEnvironment = %p\
\n\t\t\tDirection = %d",
environment,
(int)fdirection );
dm_log_write( __FILE__,
__LINE__,
LOG_INFO,
LOG_INFO,
environment -> msg );
}
thread_protect( SQL_HANDLE_ENV, environment );
if ( cb_driver_desc_max < 0 )
{
dm_log_write( __FILE__,
__LINE__,
LOG_INFO,
LOG_INFO,
"Error: HY090" );
__post_internal_error( &environment -> error,
ERROR_HY090, NULL,
environment -> requested_version );
return function_return( SQL_HANDLE_ENV, environment, SQL_ERROR );
}
/*
* the DataManager fails if this is in
*
*
if ( cb_drvr_attr_max < 0
|| cb_drvr_attr_max == 1 )
{
dm_log_write( __FILE__,
__LINE__,
LOG_INFO,
LOG_INFO,
"Error: HY090" );
__post_internal_error( &environment -> error,
ERROR_HY090, NULL,
environment -> requested_version );
return function_return( SQL_HANDLE_ENV, environment, SQL_ERROR );
}
*/
/*
* check that a version has been requested
*/
if ( environment -> requested_version == 0 )
{
dm_log_write( __FILE__,
__LINE__,
LOG_INFO,
LOG_INFO,
"Error: HY090" );
__post_internal_error( &environment -> error,
ERROR_HY010, NULL,
environment -> requested_version );
return function_return( SQL_HANDLE_ENV, environment, SQL_ERROR );
}
if ( fdirection != SQL_FETCH_FIRST &&
fdirection != SQL_FETCH_NEXT )
{
dm_log_write( __FILE__,
__LINE__,
LOG_INFO,
LOG_INFO,
"Error: HY103" );
__post_internal_error( &environment -> error,
ERROR_HY103, NULL,
environment -> requested_version );
return function_return( SQL_HANDLE_ENV, environment, SQL_ERROR );
}
if ( fdirection == SQL_FETCH_FIRST )
environment -> sql_driver_count = 0;
else
environment -> sql_driver_count ++;
try_again:
memset( buffer, '\0', sizeof( buffer ));
memset( object, '\0', sizeof( object ));
SQLGetPrivateProfileString( NULL, NULL,
NULL, buffer, sizeof( buffer ), "ODBCINST.INI" );
if ( iniElement( buffer, '\0', '\0',
environment -> sql_driver_count,
object, sizeof( object )) != INI_SUCCESS )
{
environment -> sql_driver_count = 0;
ret = SQL_NO_DATA;
}
else
{
ret = SQL_SUCCESS;
/*
* this section is used for internal info
*/
if ( strcmp( object, "ODBC" ) == 0 )
{
environment -> sql_driver_count ++;
goto try_again;
}
if ( pcb_driver_desc )
*pcb_driver_desc = strlen( object );
if ( sz_driver_desc )
{
if ( strlen( object ) >= cb_driver_desc_max )
{
memcpy( sz_driver_desc, object, cb_driver_desc_max - 1 );
sz_driver_desc[ cb_driver_desc_max - 1 ] = '\0';
ret = SQL_SUCCESS_WITH_INFO;
}
else
{
SQLWCHAR *s1;
s1 = ansi_to_unicode_alloc((SQLCHAR*) object, SQL_NTS, NULL );
if ( s1 )
{
wide_strcpy( sz_driver_desc, s1 );
free( s1 );
}
}
}
else
{
ret = SQL_SUCCESS_WITH_INFO;
}
if ( sz_driver_attributes ||
pcb_drvr_attr )
{
HINI hIni;
int string_length = 0;
char szPropertyName[INI_MAX_PROPERTY_NAME+1];
char szValue[INI_MAX_PROPERTY_NAME+1];
char szIniName[ INI_MAX_OBJECT_NAME + 1 ];
char buffer[ 1024 ];
int total_len = 0;
/*
* enumerate the driver attributes
*/
sprintf( szIniName, "%s/odbcinst.ini", odbcinst_system_file_path());
memset( buffer, '\0', sizeof( buffer ));
#ifdef __OS2__
if ( iniOpen( &hIni, szIniName, "#;", '[', ']', '=', FALSE, 1L ) ==
INI_SUCCESS )
#else
if ( iniOpen( &hIni, szIniName, "#;", '[', ']', '=', FALSE ) ==
INI_SUCCESS )
#endif
{
char pRetBuffer[ 256 ];
int nRetBuffer;
iniObjectSeek( hIni, (char *)object );
iniPropertyFirst( hIni );
while ( iniPropertyEOL( hIni ) != TRUE )
{
iniProperty( hIni, szPropertyName );
iniValue( hIni, szValue );
sprintf( buffer, "%s=%s", szPropertyName,
szValue );
if ( total_len + strlen( buffer ) + 1 > cb_drvr_attr_max )
{
ret = SQL_SUCCESS_WITH_INFO;
break;
}
else
{
if ( sz_driver_attributes )
{
SQLWCHAR *s1;
s1 = ansi_to_unicode_alloc((SQLCHAR*) buffer, SQL_NTS, NULL );
if ( s1 )
{
wide_strcpy( sz_driver_attributes, s1 );
free( s1 );
}
sz_driver_attributes += strlen( buffer ) + 1;
}
}
total_len += strlen( buffer ) + 1;
iniPropertyNext( hIni );
}
/*
* add extra null
*/
if ( sz_driver_attributes )
*sz_driver_attributes = '\0';
if ( *pcb_drvr_attr )
{
*pcb_drvr_attr = total_len;
}
iniClose( hIni );
}
}
}
if ( ret == SQL_SUCCESS_WITH_INFO )
{
dm_log_write( __FILE__,
__LINE__,
LOG_INFO,
LOG_INFO,
"Error: 01004" );
__post_internal_error( &environment -> error,
ERROR_01004, NULL,
environment -> requested_version );
}
if ( log_info.log_flag )
{
sprintf( environment -> msg,
"\n\t\tExit:[%s]",
__get_return_status( ret, s1 ));
dm_log_write( __FILE__,
__LINE__,
LOG_INFO,
LOG_INFO,
environment -> msg );
}
return function_return( SQL_HANDLE_ENV, environment, ret );
}
|