{
  "synLogic": "char* $ret \u003d $api();",
  "help": "The ns_cassdb_get_val API is used to provide the output of the query that is passed in ns_cassdb_execute_query() API.",
  "notes": "",
  "returns": "It returns the result of executed query in  ns_cassdb_execute_query api.If it fails to get the value, then returns 'NULL'.",
  "arguments": "",
  "parameterization": "",
  "component": [
	  {
      "id": "$ret",
      "type": "TextField",
      "label": "Return Variable",
      "value": "",
      "css": "p-grid p-align-center w-100-p",
      "title": "Enter Return Variable",
      "placeHolder": "",
      "style": "",
      "isDisabled": "",
      "labelVarCheckbox": "",
      "argIndex": 0,
      "validate": {
        "inputType": "Text",
        "disabled": false,
        "required": true,
        "min": 0,
        "max": 0,
        "method": "isValidVar(arg)"
      }
    }
  ],
  "name": "ns_cassdb_get_val",
  "syntax": "char* ns_cassdb_get_val()",
  "javaSyntax": "",
  "cEx": "flow()\n{\n  ns_cassdb_connect(\"www.dbserver.com\", 9042 ,\"cassandra\",\"cassandra\");\n  ns_cassdb_execute_query(\"select * from employee\");\n  char *buff;\n  buff \u003d ns_cassdb_get_val();\n  printf(\"***********output of ns_cassdb_get_val after executing query\u003d %s\\n\",buff);\n}\t  ",
  "javaEx": "",
  "insertStrC": "ns_cassdb_get_val();",
  "insertStrJava": "",
  "description": "The ns_cassdb_get_val API is used to provide the output of the query that is passed in ns_cassdb_execute_query() API."
}
