* src/vm/runner.c
! Minor to prev.
* include/hbapi.h
* src/vm/extend.c
+ Added hb_parnsize(), hb_retnsize(), hb_stornsize() functions.
; NOTE: These should be used in place of hb_parnl(), hb_retnl(),
hb_stornl() when passing HB_SIZE types.
; TODO: Use them all accross Harbour if they are correct and
after being finalized.
* src/vm/itemapi.c
+ Added hb_itemGetNSize(), hb_itemPutNSize() functions.
* DATETIME stuff in hb_itemGetNL() marked as HB_LEGACY_LEVEL3.
; QUESTION: It's marked as to be deleted in the TODO, so maybe we should
rather delete it.
* include/hbapiitm.h
* src/rtl/filesys.c
+ hb_fsReadAt(), hb_fsWriteAt(): Added support for Win64 HB_SIZE.
; QUESTION: I assume these functions have the purpose of being
atomic seek + read without moving the file pointer,
which means current modification isn't safe. How
can this be solved given Windows doesn't seem to have
64-bit read/write API calls?
! Fixed old copy-paste typos in Windows OVERLAPPED initialization,
where the lines were ended with command instead of semicolon,
they didn't cause any harm though in their former location.
% Reverted a minor change from prev commit to make it
possibly a little bit faster, like it was before.
* src/rtl/hbzlib.c
+ Added casts (at external interface calls) and other fixes to
make it build for Win64 without warnings.
* src/rdd/dbfntx/dbfntx1.c
* src/rdd/dbfnsx/dbfnsx1.c
* src/rdd/dbfcdx/dbfcdx1.c
* src/rdd/dbffpt/dbffpt1.c
* contrib/rddbmcdx/bmdbfcdx.c
* HB_ULONG -> HB_SIZE where appropriate to avoid Win64 errors
and some warnings. I'm still not comfortable to touch this
code, but it could certainly need a type cleanup.
* include/hbdefs.h
+ Added HB_PFS macro which holds the printf() format string
for HB_SIZE value.
; TODO: Use it all accross Harbour.
* contrib/hbmysql/mysql.c
* contrib/sddmy/sddmy.c
* contrib/hbmzip/hbmzip.c
* contrib/hbcurl/hbcurl.c
* contrib/hbhpdf/harupdf.c
* contrib/hbpgsql/postgres.c
* contrib/rddads/adsfunc.c
* contrib/rddads/ads1.c
* contrib/hbfimage/fi_wrp.c
* contrib/sddodbc/sddodbc.c
* contrib/hbgd/gdwrp.c
* contrib/hbwin/wapi_wingdi.c
* contrib/hbwin/wapi_winbase.c
* contrib/hbwin/wapi_winuser.c
* contrib/hbwin/win_bmp.c
* contrib/hbwin/win_prn1.c
* contrib/hbwin/win_regc.c
* contrib/hbssl/evpciph.c
* contrib/hbssl/ssl.c
* contrib/hbssl/bio.c
* contrib/hbssl/sslctx.c
* contrib/hbssl/evpenc.c
* contrib/hbssl/pem.c
* contrib/hbssl/rand.c
* contrib/hbssl/evp.c
+ Added necessary casts at external component boundaries to
make Win64 builds warning-free.
* contrib/hbct/ctstrfil.c
+ HB_ISIZ -> HB_FOFFSET, hb_fsSeek() usage, other type cleanup
to handle file offsets correctly.
* contrib/xhb/hbnxs.h
* contrib/xhb/hbcrypt.c
! Fixed warnings for Win64.
* contrib/hbwin/win_prn3.c
* contrib/xhb/dbf2txt.c
* contrib/xhb/fparse.c
* int -> HB_ISIZ for Win64.
* contrib/xhb/freadlin.c
* hb_fsSeek() -> hb_fsSeekLarge().
* contrib/sddfb/sddfb.c
* Minor type cleanup to make Win64 warning-free.
* contrib/hbsqlit3/hbsqlit3.c
+ Added necessary casts at external interface calls.
% Deleted one dummy operation from SQLITE3_FILE_TO_BUFF().
* contrib/rddsql/sqlmix.c
* contrib/rddads/adsx.c
* HB_ULONG -> HB_SIZE.
* contrib/gtwvg/gtwvg.c
* contrib/gtwvg/wvggui.c
* contrib/gtwvg/wvgcuig.c
* contrib/gtwvg/wvgwin.c
* contrib/gtwvg/wvgutils.c
* contrib/gtwvg/wvgcore.c
! int -> HB_ISIZ/HB_SIZE
+ Added necessary casts at external component boundaries to
make Win64 warning-free.
* contrib/rddads/ads1.c
* HB_ULONG -> HB_SIZE
* contrib/hbtip/utils.c
* int -> HB_ISIZ
! Fixed to use HB_FOFFSET type to save/restore file position.
* ChangeLog
+ Added missing item to previous log entry:
! Fixed hb_fsCurDirBuff() for Win64.
; It's quite large commit, nevertheless I'd highly appreciate
peer review, and certainly there will be places which need
better or different solution for Win64.
570 lines
18 KiB
C
570 lines
18 KiB
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Firebird SQL Database Driver
|
|
*
|
|
* Copyright 2007 Mindaugas Kavaliauskas <dbtopas at dbtopas.lt>
|
|
* www - http://harbour-project.org
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this software; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
|
|
*
|
|
* As a special exception, the Harbour Project gives permission for
|
|
* additional uses of the text contained in its release of Harbour.
|
|
*
|
|
* The exception is that, if you link the Harbour libraries with other
|
|
* files to produce an executable, this does not by itself cause the
|
|
* resulting executable to be covered by the GNU General Public License.
|
|
* Your use of that executable is in no way restricted on account of
|
|
* linking the Harbour library code into it.
|
|
*
|
|
* This exception does not however invalidate any other reasons why
|
|
* the executable file might be covered by the GNU General Public License.
|
|
*
|
|
* This exception applies only to the code released by the Harbour
|
|
* Project under the name Harbour. If you copy code from other
|
|
* Harbour Project or Free Software Foundation releases into a copy of
|
|
* Harbour, as the General Public License permits, the exception does
|
|
* not apply to the code that you add in this way. To avoid misleading
|
|
* anyone as to the status of such modified files, you must delete
|
|
* this exception notice from them.
|
|
*
|
|
* If you write modifications of your own for Harbour, it is your choice
|
|
* whether to permit this exception to apply to your modifications.
|
|
* If you do not wish that, delete this exception notice.
|
|
*
|
|
*/
|
|
|
|
/* NOTE: Ugly hack to avoid this error when compiler with BCC 5.8.2 and above:
|
|
Error E2238 C:\...\Firebird-2.1.1\include\ibase.h 82: Multiple declaration for 'intptr_t' */
|
|
#if ( defined( __BORLANDC__ ) && __BORLANDC__ >= 1410 )
|
|
/* Prevent inclusion of <stdint.h> from hbdefs.h */
|
|
#define __STDINT_H
|
|
#endif
|
|
|
|
#include "hbapi.h"
|
|
#include "hbapiitm.h"
|
|
#include "hbvm.h"
|
|
|
|
#include "hbrddsql.h"
|
|
|
|
#include "ibase.h"
|
|
|
|
typedef struct
|
|
{
|
|
isc_db_handle hDb;
|
|
} SDDCONN;
|
|
|
|
typedef struct
|
|
{
|
|
isc_tr_handle hTrans;
|
|
isc_stmt_handle hStmt;
|
|
XSQLDA ISC_FAR * pSqlda;
|
|
} SDDDATA;
|
|
|
|
static HB_ERRCODE fbConnect( SQLDDCONNECTION * pConnection, PHB_ITEM pItem );
|
|
static HB_ERRCODE fbDisconnect( SQLDDCONNECTION * pConnection );
|
|
static HB_ERRCODE fbExecute( SQLDDCONNECTION * pConnection, PHB_ITEM pItem );
|
|
static HB_ERRCODE fbOpen( SQLBASEAREAP pArea );
|
|
static HB_ERRCODE fbClose( SQLBASEAREAP pArea );
|
|
static HB_ERRCODE fbGoTo( SQLBASEAREAP pArea, HB_ULONG ulRecNo );
|
|
|
|
|
|
static SDDNODE firebirddd = {
|
|
NULL,
|
|
"FIREBIRD",
|
|
( SDDFUNC_CONNECT ) fbConnect,
|
|
( SDDFUNC_DISCONNECT ) fbDisconnect,
|
|
( SDDFUNC_EXECUTE ) fbExecute,
|
|
( SDDFUNC_OPEN ) fbOpen,
|
|
( SDDFUNC_CLOSE ) fbClose,
|
|
( SDDFUNC_GOTO ) fbGoTo,
|
|
( SDDFUNC_GETVALUE ) NULL,
|
|
( SDDFUNC_GETVARLEN ) NULL
|
|
};
|
|
|
|
|
|
HB_FUNC_EXTERN( SQLBASE );
|
|
|
|
static void hb_firebirddd_init( void * cargo )
|
|
{
|
|
HB_SYMBOL_UNUSED( cargo );
|
|
|
|
if ( ! hb_sddRegister( &firebirddd ) || ( sizeof( isc_db_handle ) != sizeof( void * ) ) )
|
|
{
|
|
hb_errInternal( HB_EI_RDDINVALID, NULL, NULL, NULL );
|
|
HB_FUNC_EXEC( SQLBASE ); /* force SQLBASE linking */
|
|
}
|
|
}
|
|
|
|
HB_FUNC( SDDFB ) {;}
|
|
|
|
HB_INIT_SYMBOLS_BEGIN( firebirddd__InitSymbols )
|
|
{ "SDDFB", {HB_FS_PUBLIC|HB_FS_LOCAL}, {HB_FUNCNAME( SDDFB )}, NULL },
|
|
HB_INIT_SYMBOLS_END( firebirddd__InitSymbols )
|
|
|
|
HB_CALL_ON_STARTUP_BEGIN( _hb_firebirddd_init_ )
|
|
hb_vmAtInit( hb_firebirddd_init, NULL );
|
|
HB_CALL_ON_STARTUP_END( _hb_firebirddd_init_ )
|
|
|
|
#if defined( HB_PRAGMA_STARTUP )
|
|
#pragma startup firebirddd__InitSymbols
|
|
#pragma startup _hb_firebirddd_init_
|
|
#elif defined( HB_DATASEG_STARTUP )
|
|
#define HB_DATASEG_BODY HB_DATASEG_FUNC( firebirddd__InitSymbols ) \
|
|
HB_DATASEG_FUNC( _hb_firebirddd_init_ )
|
|
#include "hbiniseg.h"
|
|
#endif
|
|
|
|
|
|
/* ===================================================================================== */
|
|
static HB_USHORT hb_errRT_FireBirdDD( HB_ERRCODE errGenCode, HB_ERRCODE errSubCode, const char * szDescription, const char * szOperation, HB_ERRCODE errOsCode )
|
|
{
|
|
HB_USHORT uiAction;
|
|
PHB_ITEM pError;
|
|
|
|
pError = hb_errRT_New( ES_ERROR, "SDDFB", errGenCode, errSubCode, szDescription, szOperation, errOsCode, EF_NONE );
|
|
uiAction = hb_errLaunch( pError );
|
|
hb_itemRelease( pError );
|
|
return uiAction;
|
|
}
|
|
|
|
/* ============= SDD METHODS ============================================================= */
|
|
|
|
static HB_ERRCODE fbConnect( SQLDDCONNECTION * pConnection, PHB_ITEM pItem )
|
|
{
|
|
ISC_STATUS_ARRAY status;
|
|
isc_db_handle hDb = ( isc_db_handle ) 0;
|
|
char parambuf[ 520 ];
|
|
int i;
|
|
unsigned int ul;
|
|
|
|
i = 0;
|
|
parambuf[ i++ ] = isc_dpb_version1;
|
|
|
|
parambuf[ i++ ] = isc_dpb_user_name;
|
|
ul = ( unsigned int ) hb_arrayGetCLen( pItem, 3 );
|
|
if ( ul > 255 )
|
|
ul = 255;
|
|
parambuf[ i++ ] = ( char ) ul;
|
|
memcpy( parambuf + i, hb_arrayGetCPtr( pItem, 3 ), ul );
|
|
i += ul;
|
|
|
|
parambuf[ i++ ] = isc_dpb_password;
|
|
ul = ( unsigned int ) hb_arrayGetCLen( pItem, 4 );
|
|
if ( ul > 255 )
|
|
ul = 255;
|
|
parambuf[ i++ ] = ( char ) ul;
|
|
memcpy( parambuf + i, hb_arrayGetCPtr( pItem, 4 ), ul );
|
|
i += ul;
|
|
|
|
if ( isc_attach_database( status, ( short ) hb_arrayGetCLen( pItem, 5 ), hb_arrayGetCPtr( pItem, 5 ),
|
|
&hDb, ( short ) i, parambuf ) )
|
|
{
|
|
/* TODO: error code in status[1]; */
|
|
return HB_FAILURE;
|
|
}
|
|
pConnection->pSDDConn = hb_xgrab( sizeof( SDDCONN ) );
|
|
( ( SDDCONN * ) pConnection->pSDDConn )->hDb = hDb;
|
|
/* HB_TRACE( HB_TR_ALWAYS, ("hDb=%d", hDb) ); */
|
|
return HB_SUCCESS;
|
|
}
|
|
|
|
|
|
static HB_ERRCODE fbDisconnect( SQLDDCONNECTION * pConnection )
|
|
{
|
|
ISC_STATUS_ARRAY status;
|
|
|
|
isc_detach_database( status, &( ( SDDCONN * ) pConnection->pSDDConn )->hDb );
|
|
hb_xfree( pConnection->pSDDConn );
|
|
return HB_SUCCESS;
|
|
}
|
|
|
|
|
|
static HB_ERRCODE fbExecute( SQLDDCONNECTION * pConnection, PHB_ITEM pItem )
|
|
{
|
|
HB_SYMBOL_UNUSED( pConnection );
|
|
HB_SYMBOL_UNUSED( pItem );
|
|
return HB_SUCCESS;
|
|
}
|
|
|
|
|
|
static HB_ERRCODE fbOpen( SQLBASEAREAP pArea )
|
|
{
|
|
isc_db_handle * phDb = &( ( SDDCONN * ) pArea->pConnection->pSDDConn )->hDb;
|
|
SDDDATA * pSDDData;
|
|
ISC_STATUS_ARRAY status;
|
|
isc_tr_handle hTrans = ( isc_tr_handle ) 0;
|
|
isc_stmt_handle hStmt = ( isc_stmt_handle ) 0;
|
|
XSQLDA ISC_FAR * pSqlda;
|
|
XSQLVAR * pVar;
|
|
PHB_ITEM pItemEof, pItem;
|
|
DBFIELDINFO pFieldInfo;
|
|
HB_BOOL bError;
|
|
char * pBuffer;
|
|
HB_USHORT uiFields, uiCount;
|
|
int iType;
|
|
|
|
pArea->pSDDData = memset( hb_xgrab( sizeof( SDDDATA ) ), 0, sizeof( SDDDATA ) );
|
|
pSDDData = ( SDDDATA * ) pArea->pSDDData;
|
|
|
|
memset( &status, 0, sizeof( status ) );
|
|
|
|
/* HB_TRACE( HB_TR_ALWAYS, ("db=%d", hDb) ); */
|
|
if ( isc_start_transaction( status, &hTrans, 1, phDb, 0, NULL ) )
|
|
{
|
|
/* HB_TRACE( HB_TR_ALWAYS, ("hTrans=%d status=%ld %ld %ld %ld", ( int ) hTrans, ( long ) status[0], ( long ) status[1], ( long ) status[2], ( long ) status[3] ) ); */
|
|
hb_errRT_FireBirdDD( EG_OPEN, ESQLDD_START, "Start transaction failed", NULL, ( HB_ERRCODE ) isc_sqlcode( status ) );
|
|
return HB_FAILURE;
|
|
}
|
|
|
|
if ( isc_dsql_allocate_statement( status, phDb, &hStmt ) )
|
|
{
|
|
hb_errRT_FireBirdDD( EG_OPEN, ESQLDD_STMTALLOC, "Allocate statement failed", NULL, ( HB_ERRCODE ) isc_sqlcode( status ) );
|
|
isc_rollback_transaction( status, &hTrans );
|
|
return HB_FAILURE;
|
|
}
|
|
|
|
pSqlda = ( XSQLDA * ) hb_xgrab( XSQLDA_LENGTH( 1 ) );
|
|
pSqlda->sqln = 1;
|
|
pSqlda->version = 1;
|
|
|
|
if ( isc_dsql_prepare( status, &hTrans, &hStmt, 0, pArea->szQuery, SQL_DIALECT_V5, pSqlda ) )
|
|
{
|
|
hb_errRT_FireBirdDD( EG_OPEN, ESQLDD_INVALIDQUERY, "Prepare statement failed", pArea->szQuery, ( HB_ERRCODE ) isc_sqlcode( status ) );
|
|
isc_dsql_free_statement( status, &hStmt, DSQL_drop );
|
|
isc_rollback_transaction( status, &hTrans );
|
|
hb_xfree( pSqlda );
|
|
return HB_FAILURE;
|
|
}
|
|
if ( pSqlda->sqld > pSqlda->sqln )
|
|
{
|
|
uiFields = pSqlda->sqld;
|
|
hb_xfree( pSqlda );
|
|
pSqlda = ( XSQLDA * ) hb_xgrab( XSQLDA_LENGTH( uiFields ) );
|
|
pSqlda->sqln = uiFields;
|
|
pSqlda->version = 1;
|
|
|
|
if ( isc_dsql_describe( status, &hStmt, SQL_DIALECT_V5, pSqlda ) )
|
|
{
|
|
hb_errRT_FireBirdDD( EG_OPEN, ESQLDD_STMTDESCR, "Describe statement failed", NULL, ( HB_ERRCODE ) isc_sqlcode( status ) );
|
|
isc_dsql_free_statement( status, &hStmt, DSQL_drop );
|
|
isc_rollback_transaction( status, &hTrans );
|
|
hb_xfree( pSqlda );
|
|
return HB_FAILURE;
|
|
}
|
|
}
|
|
|
|
pSDDData->hTrans = hTrans;
|
|
pSDDData->hStmt = hStmt;
|
|
pSDDData->pSqlda = pSqlda;
|
|
|
|
uiFields = pSqlda->sqld;
|
|
SELF_SETFIELDEXTENT( ( AREAP ) pArea, uiFields );
|
|
|
|
pItemEof = hb_itemArrayNew( uiFields );
|
|
|
|
pBuffer = ( char * ) hb_xgrab( 256 );
|
|
|
|
bError = HB_FALSE;
|
|
for ( uiCount = 0, pVar = pSqlda->sqlvar; uiCount < uiFields; uiCount++, pVar++ )
|
|
{
|
|
memcpy( pBuffer, pVar->sqlname, pVar->sqlname_length );
|
|
pBuffer[ HB_MIN( pVar->sqlname_length, MAX_FIELD_NAME ) ] = '\0';
|
|
hb_strUpper( pBuffer, MAX_FIELD_NAME + 1 );
|
|
pFieldInfo.atomName = pBuffer;
|
|
|
|
pFieldInfo.uiDec = 0;
|
|
|
|
iType = pVar->sqltype & ~1;
|
|
switch( iType )
|
|
{
|
|
case SQL_TEXT:
|
|
pFieldInfo.uiType = HB_FT_STRING;
|
|
pFieldInfo.uiLen = pVar->sqllen;
|
|
pVar->sqldata = ( char* ) hb_xgrab( sizeof( char ) * pVar->sqllen + 2 );
|
|
break;
|
|
|
|
case SQL_VARYING:
|
|
pFieldInfo.uiType = HB_FT_STRING;
|
|
pFieldInfo.uiLen = pVar->sqllen;
|
|
/* pVar->sqltype = SQL_TEXT; Coercing */
|
|
pVar->sqldata = ( char* ) hb_xgrab( sizeof( char ) * pVar->sqllen + 2 );
|
|
break;
|
|
|
|
case SQL_SHORT:
|
|
pFieldInfo.uiType = HB_FT_INTEGER;
|
|
pFieldInfo.uiLen = 6;
|
|
pVar->sqldata = ( char* ) hb_xgrab( sizeof( short ) );
|
|
break;
|
|
|
|
case SQL_LONG:
|
|
pFieldInfo.uiType = HB_FT_LONG;
|
|
pFieldInfo.uiLen = 10;
|
|
pVar->sqldata = ( char* ) hb_xgrab( sizeof( long ) );
|
|
break;
|
|
|
|
case SQL_FLOAT:
|
|
pFieldInfo.uiType = HB_FT_FLOAT;
|
|
pFieldInfo.uiLen = 16;
|
|
pFieldInfo.uiDec = - pVar->sqlscale;
|
|
pVar->sqldata = ( char* ) hb_xgrab( sizeof( float ) );
|
|
break;
|
|
|
|
case SQL_DOUBLE:
|
|
pFieldInfo.uiType = HB_FT_DOUBLE;
|
|
pFieldInfo.uiLen = 16;
|
|
pFieldInfo.uiDec = - pVar->sqlscale;
|
|
pVar->sqldata = ( char* ) hb_xgrab( sizeof( double ) );
|
|
break;
|
|
|
|
default: /* other fields as binary string */
|
|
pFieldInfo.uiType = HB_FT_STRING;
|
|
pFieldInfo.uiLen = pVar->sqllen;
|
|
pVar->sqldata = ( char* ) hb_xgrab( sizeof( char ) * pVar->sqllen );
|
|
break;
|
|
}
|
|
|
|
if ( pVar->sqltype & 1 )
|
|
pVar->sqlind = ( short * ) hb_xgrab( sizeof( short ) );
|
|
|
|
if ( ! bError )
|
|
{
|
|
switch ( pFieldInfo.uiType )
|
|
{
|
|
case HB_FT_STRING:
|
|
{
|
|
char * pStr;
|
|
|
|
pStr = ( char * ) hb_xgrab( pFieldInfo.uiLen + 1 );
|
|
memset( pStr, ' ', pFieldInfo.uiLen );
|
|
pStr[ pFieldInfo.uiLen ] = '\0';
|
|
|
|
pItem = hb_itemPutCL( NULL, pStr, pFieldInfo.uiLen );
|
|
hb_xfree( pStr );
|
|
break;
|
|
}
|
|
|
|
case HB_FT_MEMO:
|
|
pItem = hb_itemPutC( NULL, NULL );
|
|
break;
|
|
|
|
case HB_FT_INTEGER:
|
|
pItem = hb_itemPutNI( NULL, 0 );
|
|
break;
|
|
|
|
case HB_FT_LONG:
|
|
pItem = hb_itemPutNL( NULL, 0 );
|
|
break;
|
|
|
|
case HB_FT_FLOAT:
|
|
pItem = hb_itemPutNL( NULL, 0 );
|
|
break;
|
|
|
|
case HB_FT_DOUBLE:
|
|
pItem = hb_itemPutND( NULL, 0.0 );
|
|
break;
|
|
|
|
case HB_FT_DATE:
|
|
pItem = hb_itemPutDS( NULL, NULL );
|
|
break;
|
|
|
|
default:
|
|
pItem = hb_itemNew( NULL );
|
|
bError = HB_TRUE;
|
|
break;
|
|
}
|
|
|
|
hb_arraySetForward( pItemEof, uiCount + 1, pItem );
|
|
hb_itemRelease( pItem );
|
|
|
|
/* if ( pFieldInfo.uiType == HB_IT_DOUBLE || pFieldInfo.uiType == HB_IT_INTEGER )
|
|
{
|
|
pFieldInfo.uiType = HB_IT_LONG;
|
|
}
|
|
*/
|
|
if ( ! bError )
|
|
bError = ( SELF_ADDFIELD( ( AREAP ) pArea, &pFieldInfo ) == HB_FAILURE );
|
|
}
|
|
|
|
if ( bError )
|
|
break;
|
|
}
|
|
|
|
hb_xfree( pBuffer );
|
|
|
|
if ( bError )
|
|
{
|
|
hb_itemClear( pItemEof );
|
|
hb_itemRelease( pItemEof );
|
|
hb_errRT_FireBirdDD( EG_CORRUPTION, ESQLDD_INVALIDFIELD, "Invalid field type", pArea->szQuery, 0 );
|
|
return HB_FAILURE;
|
|
}
|
|
|
|
pArea->ulRecCount = 0;
|
|
|
|
pArea->pRow = ( void ** ) hb_xgrab( SQLDD_ROWSET_INIT * sizeof( void * ) );
|
|
pArea->pRowFlags = ( HB_BYTE * ) hb_xgrab( SQLDD_ROWSET_INIT * sizeof( HB_BYTE ) );
|
|
memset( pArea->pRowFlags, 0, SQLDD_ROWSET_INIT * sizeof( HB_BYTE ) );
|
|
pArea->ulRecMax = SQLDD_ROWSET_INIT;
|
|
|
|
* pArea->pRow = pItemEof;
|
|
pArea->pRowFlags[ 0 ] = SQLDD_FLAG_CACHED;
|
|
|
|
return HB_SUCCESS;
|
|
}
|
|
|
|
|
|
static HB_ERRCODE fbClose( SQLBASEAREAP pArea )
|
|
{
|
|
SDDDATA * pSDDData = ( SDDDATA * ) pArea->pSDDData;
|
|
ISC_STATUS_ARRAY status;
|
|
|
|
if ( pSDDData->pSqlda )
|
|
{
|
|
hb_xfree( pSDDData->pSqlda );
|
|
}
|
|
if ( pSDDData->hStmt )
|
|
{
|
|
isc_dsql_free_statement( status, &pSDDData->hStmt, DSQL_drop );
|
|
}
|
|
if ( pSDDData->hTrans )
|
|
{
|
|
isc_rollback_transaction( status, &pSDDData->hTrans );
|
|
}
|
|
hb_xfree( pSDDData );
|
|
return HB_SUCCESS;
|
|
}
|
|
|
|
|
|
static HB_ERRCODE fbGoTo( SQLBASEAREAP pArea, HB_ULONG ulRecNo )
|
|
{
|
|
SDDDATA * pSDDData = ( SDDDATA * ) pArea->pSDDData;
|
|
ISC_STATUS_ARRAY status;
|
|
XSQLVAR * pVar;
|
|
PHB_ITEM pItem, pArray;
|
|
HB_USHORT ui;
|
|
ISC_STATUS lErr;
|
|
short iType;
|
|
|
|
while ( ulRecNo > pArea->ulRecCount && ! pArea->fFetched )
|
|
{
|
|
isc_stmt_handle * phStmt = &pSDDData->hStmt;
|
|
isc_tr_handle * phTr = &pSDDData->hTrans;
|
|
|
|
lErr = isc_dsql_fetch( status, phStmt, SQL_DIALECT_V5, pSDDData->pSqlda );
|
|
|
|
if ( lErr == 0 )
|
|
{
|
|
pArray = hb_itemArrayNew( pArea->area.uiFieldCount );
|
|
for ( ui = 1; ui <= pArea->area.uiFieldCount; ui++ )
|
|
{
|
|
pVar = ( XSQLVAR * ) pSDDData->pSqlda;
|
|
pVar += ( ui - 1 );
|
|
|
|
if ( ( pVar->sqltype & 1 ) && ( * pVar->sqlind < 0 ) )
|
|
continue; /* NIL value */
|
|
|
|
iType = pVar->sqltype;
|
|
switch ( iType )
|
|
{
|
|
case SQL_TEXT:
|
|
pItem = hb_itemPutCL( NULL, pVar->sqldata, pVar->sqllen );
|
|
break;
|
|
|
|
case SQL_VARYING:
|
|
pItem = hb_itemPutCL( NULL, pVar->sqldata + 2, * ( short * ) pVar->sqldata );
|
|
break;
|
|
|
|
case SQL_SHORT:
|
|
pItem = hb_itemPutNI( NULL, * ( short * ) pVar->sqldata );
|
|
break;
|
|
|
|
case SQL_LONG:
|
|
pItem = hb_itemPutNL( NULL, * ( long * ) pVar->sqldata );
|
|
break;
|
|
|
|
case SQL_FLOAT:
|
|
pItem = hb_itemPutND( NULL, * ( float * ) pVar->sqldata );
|
|
break;
|
|
|
|
case SQL_DOUBLE:
|
|
pItem = hb_itemPutND( NULL, * ( double * ) pVar->sqldata );
|
|
break;
|
|
|
|
default:
|
|
pItem = hb_itemNew( NULL );
|
|
break;
|
|
}
|
|
hb_arraySetForward( pArray, ui + 1, pItem );
|
|
hb_itemRelease( pItem );
|
|
}
|
|
|
|
if ( pArea->ulRecCount + 1 <= pArea->ulRecMax )
|
|
{
|
|
pArea->pRow = ( void ** ) hb_xrealloc( pArea->pRow, ( pArea->ulRecMax + SQLDD_ROWSET_RESIZE ) * sizeof( void * ) );
|
|
pArea->pRowFlags = ( HB_BYTE * ) hb_xrealloc( pArea->pRowFlags, ( pArea->ulRecMax + SQLDD_ROWSET_RESIZE ) * sizeof( HB_BYTE ) );
|
|
pArea->ulRecMax += SQLDD_ROWSET_RESIZE;
|
|
}
|
|
|
|
pArea->ulRecCount++;
|
|
pArea->pRow[ pArea->ulRecCount ] = pArray;
|
|
pArea->pRowFlags[ pArea->ulRecCount ] = SQLDD_FLAG_CACHED;
|
|
}
|
|
else if ( lErr == 100L )
|
|
{
|
|
pArea->fFetched = HB_TRUE;
|
|
if ( isc_dsql_free_statement( status, phStmt, DSQL_drop ) )
|
|
{
|
|
hb_errRT_FireBirdDD( EG_OPEN, ESQLDD_STMTFREE, "Statement free error", NULL, ( HB_ERRCODE ) isc_sqlcode( status ) );
|
|
return HB_FAILURE;
|
|
}
|
|
pSDDData->hStmt = ( isc_stmt_handle ) 0;
|
|
|
|
if ( isc_commit_transaction( status, phTr ) )
|
|
{
|
|
hb_errRT_FireBirdDD( EG_OPEN, ESQLDD_COMMIT, "Transaction commit error", NULL, ( HB_ERRCODE ) isc_sqlcode( status ) );
|
|
return HB_FAILURE;
|
|
}
|
|
pSDDData->hTrans = ( isc_tr_handle ) 0;
|
|
|
|
hb_xfree( pSDDData->pSqlda ); /* TODO: free is more complex */
|
|
pSDDData->pSqlda = NULL;
|
|
|
|
}
|
|
else
|
|
{
|
|
hb_errRT_FireBirdDD( EG_OPEN, ESQLDD_FETCH, "Fetch error", NULL, ( HB_ERRCODE ) lErr );
|
|
return HB_FAILURE;
|
|
}
|
|
}
|
|
|
|
if ( ulRecNo == 0 || ulRecNo > pArea->ulRecCount )
|
|
{
|
|
pArea->pRecord = pArea->pRow[ 0 ];
|
|
pArea->bRecordFlags = pArea->pRowFlags[ 0 ];
|
|
pArea->fPositioned = HB_FALSE;
|
|
}
|
|
else
|
|
{
|
|
pArea->pRecord = pArea->pRow[ ulRecNo ];
|
|
pArea->bRecordFlags = pArea->pRowFlags[ ulRecNo ];
|
|
pArea->fPositioned = HB_TRUE;
|
|
}
|
|
return HB_SUCCESS;
|
|
}
|