I want to get Schema for a table with name “Petro” in SQL SErver
after initializing connectionString, I use this Code
conn.open();
conn.getSchema("Tables");
but it returns schema for all the tables. I only want the Petro schema. What should I do?
Look here for more information: MSDN: Working with the GetSchema Methods
Edit: use GetSchema instead of getSchema