CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jul 2012
    Location
    Brisbane, Australia
    Posts
    2

    Finding Odbc functions supported by driver using .NET Framework 4?

    I have just written an application using C# and the .NET framework Odbc class libraries (my second app so I am a rookie) and seem to have it working, however I need to determine the Odbc functions supported by the driver (aka SQLGetFunctions). I cannot find any Odbc method that does this for me. Do I use "ExecuteNonQuery" or something else. Is there a good text on Odbc programming with .NET Framework 4?

  2. #2
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,283

    Re: Finding Odbc functions supported by driver using .NET Framework 4?

    this might be a good place to start looking :

    http://msdn.microsoft.com/en-us/library/f0tse5zk

  3. #3
    Join Date
    Jul 2012
    Location
    Brisbane, Australia
    Posts
    2

    Re: Finding Odbc functions supported by driver using .NET Framework 4?

    Thanks for the reply Hannes, my apologies for taking so long responding. I had looked at The System.Data.Odbc namespace methods but could not find anything that applied. I am looking for a method in the System.Data namespaces that can be used to determine what API functions a driver supports like the ODBC functions SQLGetInfo and SQLGetFunctions. I am developing software using Visual C# 2010 development environment (.NET Framework 4).

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured