My String/Query looks like this
insert into Employee Values(1,2,'xxx');
update Employee2 set col1='xxx' where col2='yyy';
select * from Employee3;
I need to take/have TableName
alone. Table name won't be constant it will be differed(Employee,Employee2,Employee3) according to DB. I'm new to C#
please help me. Thanks in advance.