Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 2 of 2 total
Thread ADO.NET provider
Wed, Jan 16 2013 1:10 AMPermanent Link

ClockOn

is anyone using the ADO.NET provider from Context Software?

reason i ask is that im trying to run a fairly basic query and im getting the error 'access denied to table or backup file'.

(basic run down of process).
drop table if exists "\memory\Employee01";
ExecuteNonQuery();

select * from Employee into "\memory\Employee01";
ExecuteReader();

drop table if exists "\memory\Employee01";
ExecuteNonQuery();

it doesnt seem to let me call the memory table again.
Wed, Jan 16 2013 1:13 AMPermanent Link

ClockOn

Nevermind it appears im just being an idiot today, lol.

I was not closing the reader and so it was still being accessed.

Smile
Image