ODBC에서 SQLGetData로 받아올 필드 길이 구하기?

purewell의 이미지

데이터베이스 관련 라이브러리를 짜려고 합니다.

bool GetString (std::string& strRet, int nCols)
{
  ...
  SQLGetData (...);
  ...
}

문제는 ODBC라이브러리는 std::string을 지원하지 않습니다.

받아올 필드의 길이(nSize)를 계산해서

char* pData = new nSize;

한 뒤에 strRet에 복사해주려고 합니다.

이때 nSize를 구하는 방법을 알고 싶습니다.

pynoos의 이미지

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odbc/htm/odch21gpr.asp

buffer와 그 길이를 넘기도록 되어 있군요.
어떤 알 수 없는 길이를 넘기는 API는 일반적으로 그 buffer의 최대값만큼 버퍼를 만들어서 넘겨야합니다.
ODBC에서는 그 API가 최대 얼마를 넘길 것이다를 정하지는 않을 것 같군요.

만약, 길이를 fetch하는 다른 함수가 있어도, 제 생각은 두번 호출하는 것보다 넉넉한 버퍼를 넘겨주는 것이 좋겠다입니다.

choissi의 이미지

SQLDescribeCol returns the result descriptor—column name, type, column size, decimal digits, and nullability—for one column in the result set. This information also is available in the fields of the IRD.

SQLRETURN SQLDescribeCol(
     SQLHSTMT     StatementHandle,
     SQLSMALLINT     ColumnNumber,
     SQLCHAR *     ColumnName,
     SQLSMALLINT     BufferLength,
     SQLSMALLINT *     NameLengthPtr,
     SQLSMALLINT *     DataTypePtr,
     SQLUINTEGER *     ColumnSizePtr,
     SQLSMALLINT *     DecimalDigitsPtr,
     SQLSMALLINT *     NullablePtr);

http://www-3.ibm.com/software/data/db2/everyplace/doc/infocenters/kor/dbeapr1010.htm

ps. 제 생각은 좀 다른것이..
쿼리 실행후에 리턴하는 칼럼의 수와 그 칼럼의 속성을 모른다면,
프로그래밍에 어려움이 있다고 생각합니다.
쿼리 실행후에 따로 칼럼에 대한 정보를 가지고 처리를 해주야 할것 같네요

참고그림

울랄라~ 호기심 천국~!!
http://www.ezdoum.com

purewell의 이미지

감사합니다. ^ -^);

_____________________________
언제나 맑고픈 샘이가...
http://purewell.biz

pynoos의 이미지

choissi wrote:
SQLDescribeCol returns the result descriptor—column name, type, column size, decimal digits, and nullability—for one column in the result set. This information also is available in the fields of the IRD.

SQLRETURN SQLDescribeCol(
     SQLHSTMT     StatementHandle,
     SQLSMALLINT     ColumnNumber,
     SQLCHAR *     ColumnName,
     SQLSMALLINT     BufferLength,
     SQLSMALLINT *     NameLengthPtr,
     SQLSMALLINT *     DataTypePtr,
     SQLUINTEGER *     ColumnSizePtr,
     SQLSMALLINT *     DecimalDigitsPtr,
     SQLSMALLINT *     NullablePtr);

http://www-3.ibm.com/software/data/db2/everyplace/doc/infocenters/kor/dbeapr1010.htm

ps. 제 생각은 좀 다른것이..
쿼리 실행후에 리턴하는 칼럼의 수와 그 칼럼의 속성을 모른다면,
프로그래밍에 어려움이 있다고 생각합니다.
쿼리 실행후에 따로 칼럼에 대한 정보를 가지고 처리를 해주야 할것 같네요

아! 저런 좋은 함수가 있군요? 하도 오래전에 ODBC를 다뤄봐서.. :)
만약, 저런 함수처럼 필드의 최대값이 아닌, 필드 값의 길이를 넘기는 것을 생각한다면, 우울했을 것입니다....

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.