J
John
Hi
I am running below statement repeatedly with different SQL;
QuerySt = "SELECT * FROM ... "
CompanyAdapter = New OleDbDataAdapter(QuerySt, LocalConn)
CompanyBuilder = New OleDbCommandBuilder(CompanyAdapter)
Is there a way to avoid having to recreate the adapter and command builder
every time and reuse the previous adapter/command builder?
Thanks
Regards
I am running below statement repeatedly with different SQL;
QuerySt = "SELECT * FROM ... "
CompanyAdapter = New OleDbDataAdapter(QuerySt, LocalConn)
CompanyBuilder = New OleDbCommandBuilder(CompanyAdapter)
Is there a way to avoid having to recreate the adapter and command builder
every time and reuse the previous adapter/command builder?
Thanks
Regards