Comments
Sort by recent activity
Hi, Still we are seeing same issue, some of the tables able to generate column names and some of the tables generating bind values. Example 1:INSERT INTO tablename (value1,value2,value3) VALUES (:0, :1, :2) --This format is working fine. Example 2: INSERT INTO tablename VALUES (:0, :1, :2)'; --This format is having issue. My Redgare version is 3.1.16.2198. / comments
Hi, Still we are seeing same issue, some of the tables able to generate column names and some of the tables generating bind values.Example 1:INSERT INTO tablename (value1,value2,value3) VALUES (:0,...