<< DbFetchReal SciDb DbFetchStruct >>

SciDb >> SciDb > DbFetchString

DbFetchString

get a record from result as matrix of strings

Calling Sequence

DbFetchString(resultHandler)

Parameters

resultHandler

a pointer to result handler object (returned by DbQuery())

Description

DbFetchString(resultHandler) gets a record from query result, represented by resultHandler pointer, as matrix of strings

Examples

// Opens a “PostgreSQL” connection with a connexion string
dblink = DbConnect("PSQL", ..
"Server=127.0.0.1;Database=myDataBase;User Id=myUsername;Password=myPassword;");

resultHandle = DbQuery(dblink, "SELECT * FROM data_table");

recordStrings = DbFetchString(resulthandle);

See Also

Authors


Report an issue
<< DbFetchReal SciDb DbFetchStruct >>