neo4j_render_csv

Render a result stream as comma separated value.

A bitmask of flags may be supplied, which may include: - NEO4J_RENDER_SHOW_NULL - output 'null' when rendering NULL values, rather than an empty cell.

If no flags are required, pass 0 or NEO4J_RENDER_DEFAULT.

@attention The output will be written to the stream using UTF-8 encoding.

@param stream The stream to render to. @param results The results stream to render. @param flags A bitmask of flags to control rendering. @return 0 on success, or -1 on error (errno will be set).

extern (C)
int
neo4j_render_csv
(
FILE* stream
,,
uint_fast32_t flags
)

Meta