wargre
Results
2
comments of
wargre
Hello, This is not an issue, but a bug in your code : PreparedStatement st = null; st = conn.prepareStatement(query); st.setString(1, "happy"); ResultSet rset = st.executeQuery(query);
Replacing text in query can be dangerous as it need a complete query parsing. Ex: START n=node:myIndex(name=?) MATCH n-[t?]->s WHERE t.name?~="^[a-c]?[0-9]*" and s.desc="what\"=? that" WITH s CREATE UNIQUE s-[:test{val=?}]->p SET...