1

我正在尝试使用SQLBindParameter我的驱动程序来准备通过SQLPutData. 数据库中的字段是TEXT字段。我的函数是根据这里的 MS 示例制作的:http: //msdn.microsoft.com/en-us/library/ms713824 (VS.85).aspx 。

我已经设置了环境,建立了连接,并成功地准备了我的语句,但是当我调用SQLBindParam(使用下面的代码)时,它始终无法报告:[Microsoft][SQL Native Client]Invalid precision value

int col_num = 1;
SQLINTEGER length = very_long_string.length( );
retcode = SQLBindParameter( StatementHandle,
            col_num,
            SQL_PARAM_INPUT,
            SQL_C_BINARY,
            SQL_LONGVARBINARY,
            NULL,
            NULL,            
            (SQLPOINTER) col_num,     
            NULL,                 
            &length ); 

以上依赖于使用中的驱动程序返回“N”中的SQL_NEED_LONG_DATA_LEN信息类型SQLGetInfo。我的司机返回“Y”。如何绑定以便我可以使用SQLPutData

4

2 回答 2

3

虽然它看起来不像文档的示例代码,但我发现以下解决方案适用于我想要完成的工作。感谢 gbjbaanb 让我重新测试 SQLBindParameter 的输入组合。

    SQLINTEGER length;
    RETCODE retcode = SQLBindParameter( StatementHandle,
        col_num,      // position of the parameter in the query
        SQL_PARAM_INPUT,
        SQL_C_CHAR,
        SQL_VARCHAR,
        data_length,        // size of our data
        NULL,               // decimal precision: not used our data types
        &my_string,         // SQLParamData will return this value later to indicate what data it's looking for so let's pass in the address of our std::string
        data_length,
        &length );          // it needs a length buffer

    // length in the following operation must still exist when SQLExecDirect or SQLExecute is called
    // in my code, I used a pointer on the heap for this.
    length = SQL_LEN_DATA_AT_EXEC( data_length ); 

语句执行后,可以使用 SQLParamData 来确定 SQL 希望您发送什么数据,如下所示:

    std::string* my_string;
    // set string pointer to value given to SQLBindParameter
    retcode = SQLParamData( StatementHandle, (SQLPOINTER*) &my_string ); 

最后,使用 SQLPutData 将字符串的内容发送到 SQL:

    // send data in chunks until everything is sent
    SQLINTEGER len;
    for ( int i(0); i < my_string->length( ); i += CHUNK_SIZE )
    {
        std::string substr = my_string->substr( i, CHUNK_SIZE );

        len = substr.length( );

        retcode = SQLPutData( StatementHandle, (SQLPOINTER) substr.c_str( ), len );
    }
于 2008-09-18T02:17:40.063 回答
1

您将 NULL 作为缓冲区长度传递,这是一个输入/输出参数,应该是 col_num 参数的大小。此外,您应该为 ColumnSize 或 DecimalDigits 参数传递一个值。

http://msdn.microsoft.com/en-us/library/ms710963(VS.85).aspx

于 2008-09-17T16:35:17.780 回答