VoiceGuide IVR Software Main Page
Jump to content

Database Query Module issue

Recommended Posts

I have issue to use database query module. The error that I can find from script log is "An OLE DB Provider was not specified in the ConnectionString.  An example would be, 'Provider=SQLOLEDB;'".

I did try to add "Provider=SQLOLEDB;'" before Data Source, but it didn't fix the issue.

image.png.017a5df3bbc0c3234dea824a02536eb0.png

 

Edited by SupportTeam

Share this post


Link to post

vgEngine trace shows:

230358.095  20   8   2     2       db    did not find ado.net data provider : [System.data.SqlClient]

Perhaps the ADO.NET data provider matching is case sensitive ?

Please try using:

System.Data.SqlClient

as your specified ADO.NET data provider. Note that the middle word of the above "System.Data.SqlClient" is "Data" with a capital "D", not "data" with a lowercase "d".

 

vgEngine trace shows that you also have a separate module "LocZip2_Hold" playing sound file hold.wav before starting the "LocZipResp_Search" module that does the database query.

Database Query module can play a sound file while performing the database query, and then you have option for that module to complete that sound file play even if the database query returns earlier. This may be a better approach instead of completing the playing that hold.wav file in a previous module before starting the database query.

You can of course also tell the Database Query module to stop playing of that 'on-hold' sound file as soon as the database query returns.

Share this post


Link to post

SECURITY NOTE:

If your connection string includes a password then please change that password after posting traces on the public Support Forum.

VoiceGuide traces do not obscure any part of the database connection string. This is to aid in debugging.

If your database connection string includes a password then that password will be visible as part of the connection string logged in the trace file.

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×