I am successfully getting Auto Complete to work but it shows duplicates, is there a way to not show dups?
Here is my procedure:
create procedure sp_Autoc_DBR_ScriptName( inItemName varchar(255) )
begin select item_name from mydatabase.mytable
where item_name like concat( '%', inItemName, '%'); end
Thanks