HiTechFred
Programmer
Hey Everyone,
I'm trying to write a C# app that will show a list of all tables in MAS200. I know you can do it because, how else can Crystal Reports Query all the tables for a user to select when writing a report.
I have a workign C# applications that connect and can read data, I'm having trouble when I'm trying to view all them.
Here are the SQL Sommands I have tried:
1. SHOW ALL
2. SHOW ALL FROM *
3. SHOW TABLES
4. select * from sysobjects
5. SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE = 'BASE TABLE' ORDER BY TABLE_NAME
6. SELECT * FROM *
So far nothing, anyone help?
I'm trying to write a C# app that will show a list of all tables in MAS200. I know you can do it because, how else can Crystal Reports Query all the tables for a user to select when writing a report.
I have a workign C# applications that connect and can read data, I'm having trouble when I'm trying to view all them.
Here are the SQL Sommands I have tried:
1. SHOW ALL
2. SHOW ALL FROM *
3. SHOW TABLES
4. select * from sysobjects
5. SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE = 'BASE TABLE' ORDER BY TABLE_NAME
6. SELECT * FROM *
So far nothing, anyone help?