Hi
I'm new to database programming in C#.
So here is my question.
I have a database with a couple of tables for my little tool.
Now, I want to load all these data in a DataSet. But how to?
After setup and opening connection I use the DataAdapter.
SqlCeDataAdapter DA = new SqlCeDataAdapter("SELECT * FROM XList", conn);
Is this the correct command for it?
But how can I access the different tables?
If not, how can I load all tables in my DataSet?
Hope, you understand what I mean and it's not to easy

.
Any help would be great