ocr - ABBYY Flexicapture connect to database -
i have run database queries in abbyy flexicapture connecting dll methods contained database calls. have ability connect directly in abbyy rules, if possible. relatively recent update added ability write rules in c#, i'm assuming it's possible this.
i have added system.data .net reference in document definition properties, "the type or namespace name 'sqlconnection' not found (are missing using directive or assembly reference?" when run line of code:
sqlconn = new sqlconnection("[my connection string]");
i have tried adding
using system.data.sqlconnection
above line , says sqlconnection not exist in system.data.
has had success in doing this?
try this:
using system.data.sqlclient
Comments
Post a Comment