Handling SQL prompt through Perl expect module

Hi All,

I have a doubt whether expect module in perl will work in SQL prompt or its applicable only for shell prompt ?

Thanks,
Arun V

Expect will work with any prompt you throw at it, as long as you can properly define it. But for SQL operations I'd rather suggest using DBI instead.

1 Like

Thanks Pludi