Skip to content
Snippets Groups Projects
Commit e01e130d authored by Fons Rademakers's avatar Fons Rademakers
Browse files

fixes for 64-bit version which is not optimally defined in ODBC.

git-svn-id: http://root.cern.ch/svn/root/trunk@14728 27541ba8-7e3a-0410-8455-c3a389f83636
parent 30d8c84c
No related branches found
No related tags found
No related merge requests found
// @(#)root/odbc:$Name: $:$Id: TODBCStatement.h,v 1.1 2006/02/6 10:00:44 rdm Exp $ // @(#)root/odbc:$Name: $:$Id: TODBCStatement.h,v 1.1 2006/04/17 14:12:52 rdm Exp $
// Author: Sergey Linev 6/02/2006 // Author: Sergey Linev 6/02/2006
/************************************************************************* /*************************************************************************
...@@ -15,6 +15,9 @@ ...@@ -15,6 +15,9 @@
#ifndef ROOT_TSQLStatement #ifndef ROOT_TSQLStatement
#include "TSQLStatement.h" #include "TSQLStatement.h"
#endif #endif
#ifndef ROOT_TODBCTypes
#include "TODBCTypes.h"
#endif
#ifdef __CINT__ #ifdef __CINT__
typedef void * SQLHSTMT; typedef void * SQLHSTMT;
...@@ -41,7 +44,7 @@ protected: ...@@ -41,7 +44,7 @@ protected:
Int_t sqlctype; Int_t sqlctype;
void *buffer; void *buffer;
Int_t elementsize; Int_t elementsize;
Long_t *lenarray; ODBCInt_t *lenarray;
char *strbuffer; char *strbuffer;
char *namebuffer; char *namebuffer;
}; };
......
// @(#)root/odbc:$Name: $:$Id: TODBCRow.h,v 1.1 2006/04/17 14:12:52 rdm Exp $
// Author: Fons Rademakers 18/04/2006
/*************************************************************************
* Copyright (C) 1995-2006, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef ROOT_TODBCTypes
#define ROOT_TODBCTypes
#ifndef ROOT_Rtypes
#include "Rtypes.h"
#endif
// Microsoft is confused about sizes on different platforms.
#ifdef R__B64
typedef UInt_t ODBCUInt_t;
typedef Int_t ODBCInt_t;
#else
typedef ULong_t ODBCUInt_t;
typedef Long_t ODBCInt_t;
#endif
#endif
// @(#)root/odbc:$Name: $:$Id: TODBCResult.cxx,v 1.1.1.1 2000/05/16 17:00:58 rdm Exp $ // @(#)root/odbc:$Name: $:$Id: TODBCResult.cxx,v 1.1 2006/04/17 14:12:52 rdm Exp $
// Author: Sergey Linev 6/02/2006 // Author: Sergey Linev 6/02/2006
/************************************************************************* /*************************************************************************
...@@ -11,6 +11,8 @@ ...@@ -11,6 +11,8 @@
#include "TODBCResult.h" #include "TODBCResult.h"
#include "TODBCRow.h" #include "TODBCRow.h"
#include "TODBCTypes.h"
ClassImp(TODBCResult) ClassImp(TODBCResult)
...@@ -52,7 +54,7 @@ const char *TODBCResult::GetFieldName(Int_t field) ...@@ -52,7 +54,7 @@ const char *TODBCResult::GetFieldName(Int_t field)
SQLSMALLINT nameLength; SQLSMALLINT nameLength;
SQLSMALLINT dataType; SQLSMALLINT dataType;
ULong_t columnSize; ODBCUInt_t columnSize;
SQLSMALLINT decimalDigits; SQLSMALLINT decimalDigits;
SQLSMALLINT nullable; SQLSMALLINT nullable;
......
// @(#)root/odbc:$Name: $:$Id: TODBCRow.cxx,v 1.1.1.1 2000/05/16 17:00:58 rdm Exp $ // @(#)root/odbc:$Name: $:$Id: TODBCRow.cxx,v 1.1 2006/04/17 14:12:52 rdm Exp $
// Author: Sergey Linev 6/02/2006 // Author: Sergey Linev 6/02/2006
/************************************************************************* /*************************************************************************
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
*************************************************************************/ *************************************************************************/
#include "TODBCRow.h" #include "TODBCRow.h"
#include "TODBCTypes.h"
#include <sqlext.h> #include <sqlext.h>
...@@ -75,7 +76,7 @@ const char *TODBCRow::GetField(Int_t field) ...@@ -75,7 +76,7 @@ const char *TODBCRow::GetField(Int_t field)
fBuffer[field] = new char[buffer_len]; fBuffer[field] = new char[buffer_len];
Long_t ressize; ODBCInt_t ressize;
SQLGetData(fHstmt, field+1, SQL_C_CHAR, fBuffer[field], buffer_len, &ressize); SQLGetData(fHstmt, field+1, SQL_C_CHAR, fBuffer[field], buffer_len, &ressize);
......
// @(#)root/odbc:$Name: $:$Id: TODBCStatement.cxx,v 1.1 2006/02/6 10:00:44 rdm Exp $ // @(#)root/odbc:$Name: $:$Id: TODBCStatement.cxx,v 1.1 2006/04/17 14:12:52 rdm Exp $
// Author: Sergey Linev 6/02/2006 // Author: Sergey Linev 6/02/2006
/************************************************************************* /*************************************************************************
...@@ -20,13 +20,12 @@ ...@@ -20,13 +20,12 @@
#include "TODBCStatement.h" #include "TODBCStatement.h"
#include "TDataType.h" #include "TDataType.h"
#include "snprintf.h" #include "snprintf.h"
#include "Riostream.h"
#include "sqlext.h" #include <sqlext.h>
#include "Riostream.h"
ClassImp(TODBCStatement) ClassImp(TODBCStatement)
...@@ -153,7 +152,7 @@ Bool_t TODBCStatement::Process() ...@@ -153,7 +152,7 @@ Bool_t TODBCStatement::Process()
Int_t TODBCStatement::GetNumAffectedRows() Int_t TODBCStatement::GetNumAffectedRows()
{ {
Long_t RowCount; ODBCInt_t RowCount;
SQLRETURN retcode = SQL_SUCCESS; SQLRETURN retcode = SQL_SUCCESS;
retcode = SQLRowCount(fHstmt, &RowCount); retcode = SQLRowCount(fHstmt, &RowCount);
...@@ -195,7 +194,7 @@ Bool_t TODBCStatement::StoreResult() ...@@ -195,7 +194,7 @@ Bool_t TODBCStatement::StoreResult()
SQLCHAR ColumnName[1024]; SQLCHAR ColumnName[1024];
SQLSMALLINT NameLength; SQLSMALLINT NameLength;
SQLSMALLINT DataType; SQLSMALLINT DataType;
ULong_t ColumnSize; ODBCUInt_t ColumnSize;
SQLSMALLINT DecimalDigits; SQLSMALLINT DecimalDigits;
SQLSMALLINT Nullable; SQLSMALLINT Nullable;
...@@ -409,7 +408,7 @@ Bool_t TODBCStatement::BindColumn(Int_t ncol, SQLSMALLINT sqltype, SQLUINTEGER s ...@@ -409,7 +408,7 @@ Bool_t TODBCStatement::BindColumn(Int_t ncol, SQLSMALLINT sqltype, SQLUINTEGER s
fBuffer[ncol].sqlctype = sqlctype; fBuffer[ncol].sqlctype = sqlctype;
fBuffer[ncol].buffer = malloc(elemsize * fBufferLength); fBuffer[ncol].buffer = malloc(elemsize * fBufferLength);
fBuffer[ncol].elementsize = elemsize; fBuffer[ncol].elementsize = elemsize;
fBuffer[ncol].lenarray = new Long_t[fBufferLength]; fBuffer[ncol].lenarray = new ODBCInt_t[fBufferLength];
SQLRETURN retcode = SQLRETURN retcode =
SQLBindCol(fHstmt, ncol+1, sqlctype, fBuffer[ncol].buffer, SQLBindCol(fHstmt, ncol+1, sqlctype, fBuffer[ncol].buffer,
...@@ -455,7 +454,7 @@ Bool_t TODBCStatement::BindParam(Int_t npar, Int_t roottype, Int_t size) ...@@ -455,7 +454,7 @@ Bool_t TODBCStatement::BindParam(Int_t npar, Int_t roottype, Int_t size)
} }
void* buffer = malloc(elemsize * fBufferLength); void* buffer = malloc(elemsize * fBufferLength);
Long_t *lenarray = new Long_t[fBufferLength]; ODBCInt_t *lenarray = new ODBCInt_t[fBufferLength];
SQLRETURN retcode = SQLRETURN retcode =
SQLBindParameter(fHstmt, npar+1, SQL_PARAM_INPUT, SQLBindParameter(fHstmt, npar+1, SQL_PARAM_INPUT,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment