SqlGetString(sqlquery, int)

From NWN Lexicon
Jump to navigationJump to search
Nwnee logo.jpg Note: This article documents Neverwinter Nights: Enhanced Edition new content or changes/updates/fixes to 1.69 functions. These are all listed under the category and patches pages.

Retrieve a column cast as a string of the currently stepped row.

string SqlGetString(
    sqlquery sqlQuery,
    int nIndex
);

Parameters

sqlQuery
An already prepared SQL query
nIndex
Index of the float to retrieve

Description

Retrieve a column cast as a string of the currently stepped row.

You can call this after SqlStep() returned TRUE.

In case of error, 0 will be returned.

In traditional fashion, nIndex starts at 0.


Remarks

Use this to retrieve data from a select SQL query.


Version

This function was added in 1.80.8193.14 of NWN:EE.


Example

    // "Widget" is cast as a string
    sqlquery n = SqlPrepareQueryObject(GetFirstPC(), "select widget from widgets;");
    while (SqlStep(n))
    {
        SendMessageToPC(GetFirstPC(), "Found widget string: " + SqlGetString(n, 0));
    }

See Also

functions:

SqlPrepareQueryCampaign SqlPrepareQueryObject SqlGetInt SqlGetFloat SqlGetVector SqlGetObject