PQgetvalue        379 ext/pdo_pgsql/pgsql_driver.c 			id = estrdup((char *)PQgetvalue(res, 0, 0));
PQgetvalue        416 ext/pdo_pgsql/pgsql_driver.c 					ZVAL_STRING(return_value, (char *)PQgetvalue(res, 0, 0));
PQgetvalue        512 ext/pdo_pgsql/pgsql_statement.c 		*ptr = PQgetvalue(S->result, S->current_row - 1, colno);
PQgetvalue        613 ext/pdo_pgsql/pgsql_statement.c 	add_assoc_string(return_value, "native_type", PQgetvalue(res, 0, 0));
PQgetvalue       2367 ext/pgsql/pgsql.c 			if ((tmp_oid = PQgetvalue(result,i,oid_offset))==NULL) {
PQgetvalue       2376 ext/pgsql/pgsql.c 			if ((tmp_name = PQgetvalue(result,i,name_offset))==NULL) {
PQgetvalue       2467 ext/pgsql/pgsql.c 		if ((table_name = PQgetvalue(tmp_res, 0, 0)) == NULL) {
PQgetvalue       2669 ext/pgsql/pgsql.c 		RETVAL_STRINGL(PQgetvalue(pgsql_result, pgsql_row, field_offset),
PQgetvalue       2759 ext/pgsql/pgsql.c 			char *element = PQgetvalue(pgsql_result, pgsql_row, i);
PQgetvalue       2935 ext/pgsql/pgsql.c 			add_next_index_string(return_value, PQgetvalue(pgsql_result, pg_row, (int)colno));
PQgetvalue       5567 ext/pgsql/pgsql.c 		add_assoc_long_ex(&elem, "num", sizeof("num") - 1, atoi(PQgetvalue(pg_result, i, 1)));
PQgetvalue       5569 ext/pgsql/pgsql.c 		add_assoc_string_ex(&elem, "type", sizeof("type") - 1, PQgetvalue(pg_result, i, 2));
PQgetvalue       5571 ext/pgsql/pgsql.c 		add_assoc_long_ex(&elem, "len", sizeof("len") - 1, atoi(PQgetvalue(pg_result,i,3)));
PQgetvalue       5573 ext/pgsql/pgsql.c 		add_assoc_bool_ex(&elem, "not null", sizeof("not null") - 1, !strcmp(PQgetvalue(pg_result, i, 4), "t"));
PQgetvalue       5575 ext/pgsql/pgsql.c 		add_assoc_bool_ex(&elem, "has default", sizeof("has default") - 1, !strcmp(PQgetvalue(pg_result,i,5), "t"));
PQgetvalue       5577 ext/pgsql/pgsql.c 		add_assoc_long_ex(&elem, "array dims", sizeof("array dims") - 1, atoi(PQgetvalue(pg_result, i, 6)));
PQgetvalue       5579 ext/pgsql/pgsql.c 		add_assoc_bool_ex(&elem, "is enum", sizeof("is enum") - 1, !strcmp(PQgetvalue(pg_result, i, 7), "e"));
PQgetvalue       5582 ext/pgsql/pgsql.c 			add_assoc_bool_ex(&elem, "is base", sizeof("is base") - 1, !strcmp(PQgetvalue(pg_result, i, 7), "b"));
PQgetvalue       5583 ext/pgsql/pgsql.c 			add_assoc_bool_ex(&elem, "is composite", sizeof("is composite") - 1, !strcmp(PQgetvalue(pg_result, i, 7), "c"));
PQgetvalue       5584 ext/pgsql/pgsql.c 			add_assoc_bool_ex(&elem, "is pesudo", sizeof("is pesudo") - 1, !strcmp(PQgetvalue(pg_result, i, 7), "p"));
PQgetvalue       5586 ext/pgsql/pgsql.c 			add_assoc_string_ex(&elem, "description", sizeof("description") - 1, PQgetvalue(pg_result, i, 8));
PQgetvalue       5589 ext/pgsql/pgsql.c 		name = PQgetvalue(pg_result,i,0);
PQgetvalue       7024 ext/pgsql/pgsql.c 				char *element = PQgetvalue(pg_result, pg_row, i);