• 0

getSchema multiple tables


Question

I'm using .net 2 and the getschema function of the db connection to get database schema.

This is the code i'm using to get the schema. How do i get schema for

multiple tables at once using the same code

restrictions(0) = database

restrictions(1) = owner

restrictions(2) = table

newTable = dbConnection.GetSchema("columns", restrictions)

Link to comment
https://www.neowin.net/forum/topic/387153-getschema-multiple-tables/
Share on other sites

3 answers to this question

Recommended Posts

  • 0

That is how you get multiple table schemas. You're getting the schema for the database you're connected to.

I think you're doing your restrictions incorrectly.

The first element is which catalog to use, the second is the owner(e.g. dbo), the third is the table name(e.g. Authors), and the fourth is table type. So, if you want all the tables that belong to dbo, you only need to specify that the second element of the restrictions array is "dbo".

This gets all the tables that belong to dbo.

  Dim connectionString As String = GetConnectionString()
  Dim restrictions(3) As String
  Using connection As New SqlConnection(connectionString)

    'Connect to the database, and then retrieve the 
    'schema information.
    connection.Open()
    restrictions(1) = "dbo"
    Dim table As DataTable = connection.GetSchema("Tables", _
       restrictions)

    ' Display the contents of the table.
    DisplayData(table)
    Console.WriteLine("Press any key to continue.")
    Console.ReadKey()
  End Using

If you omit the restrictions parameter altogether, you'll get all the tables, system and otherwise, for the current database.

  • 0
  weenur said:
That is how you get multiple table schemas. You're getting the schema for the database you're connected to.

I think you're doing your restrictions incorrectly.

The first element is which catalog to use, the second is the owner(e.g. dbo), the third is the table name(e.g. Authors), and the fourth is table type. So, if you want all the tables that belong to dbo, you only need to specify that the second element of the restrictions array is "dbo".

This gets all the tables that belong to dbo.

 ?Dim connectionString As String = GetConnectionString()
 ?Dim restrictions(3) As String
 ?Using connection As New SqlConnection(connectionString)

 ? ?'Connect to the database, and then retrieve the 
 ? ?'schema information.
 ? ?connection.Open()
 ? ?restrictions(1) = "dbo"
 ? ?Dim table As DataTable = connection.GetSchema("Tables", _
 ? ? ? restrictions)

 ? ?' Display the contents of the table.
 ? ?DisplayData(table)
 ? ?Console.WriteLine("Press any key to continue.")
 ? ?Console.ReadKey()
 ?End Using

If you omit the restrictions parameter altogether, you'll get all the tables, system and otherwise, for the current database.

586695150[/snapback]

But how would i get just two tables and not all of them or just one table

  • 0

OK, I see what you're getting at. You can't do it the way you want, apparently. The docs don't show a way to get multiple tables with the restrictions array.

What you could do is do a dynamic SQL query to select from the tables you want schema info from, and then use the DataTables(DataSet.Tables) you get back to get primary keys, or any other info.

What exactly are you trying to get from the schema?

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Just checked my B650 Motherboard again, nothing there as yet, Guess 800 series getting it first, which i can understand as that's newer series, and chipset. I'll check again in a few days or a week depending on how busy i am
    • Display Driver Uninstaller (DDU) 18.1.1.5 by Razvan Serea Display Driver Uninstaller (DDU) is a utility for completely removing AMD/NVIDIA/INTEL graphics drivers and related packages from your system, attempting to eliminate all leftovers (including registry entries, folders and files, driver store). Though AMD/NVIDIA/INTEL drivers can usually be removed via the Windows Control Panel, this uninstaller tool was created for situations where standard uninstall fails, or when you need to fully remove NVIDIA or ATI graphics card drivers. After using this driver cleaner, your system will behave as though it’s the first time you’re installing a new driver—similar to a fresh Windows installation. As with all such tools, we recommend creating a restore point beforehand, allowing you to undo changes if issues arise. If you're having trouble installing an older or newer driver, try it—there are reports that it resolves such problems. Recommended usage: The tool can be used in Normal mode but for absolute stability when using DDU, Safemode is always the best. Make a backup or a system restore (but it should normally be pretty safe). It is best to exclude the DDU folder completely from any security software to avoid issues. You do NOT need to uninstall the driver prior using DDU. Requirements: .NET Framework 4.8 Compatible with Windows 7, 8, 8.1, 10, and 11 (32-bit or 64-bit) Note: Using on Insider Preview builds is at your own risk. Display Driver Uninstaller (DDU) 18.1.1.5 changelog: Intel: Added NPU presence detection before removing shared DLL files (these were previously left to prevent potential NPU-related issues). Intel: Added optional NPU removal Improved "Extension" driver removal process. Updated several translations. Download: Display Driver Uninstaller 18.1.1.5 | 1.7 MB (Freeware) Download: DDU Portable | 1.2 MB Links: Display Driver Uninstaller Home Page | Screenshot | Forum Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • I just ordered a new MSI X870 board, hasn't even arrived yet. I checked the downloads page, and it has the firmware released on 6/11/2025 including the updated AGESA code.
    • There used to be an independent video game store in West Edmonton Mall around 20 years ago, I'm not sure when it went out of business, but they were selling console & PC games for $70±, I think it was so they could cover their rent!
  • Recent Achievements

    • Explorer
      Legend20 went up a rank
      Explorer
    • One Month Later
      jezzzy earned a badge
      One Month Later
    • First Post
      CSpera earned a badge
      First Post
    • One Month Later
      MIR JOHNNY BLAZE earned a badge
      One Month Later
    • Apprentice
      Wireless wookie went up a rank
      Apprentice
  • Popular Contributors

    1. 1
      +primortal
      624
    2. 2
      ATLien_0
      275
    3. 3
      +FloatingFatMan
      178
    4. 4
      Michael Scrip
      152
    5. 5
      Steven P.
      115
  • Tell a friend

    Love Neowin? Tell a friend!