Library files

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • reon
    New Member
    • Feb 2007
    • 80

    Library files

    #include <SQLAPI.h> // main SQLAPI++ header

    where did i get 'SQLAPI.h' library file....
    Did anyone know any details about this library files pleae post..
    i googled so many links didnt get...
    I mean it in Turbo C++
  • sicarie
    Recognized Expert Specialist
    • Nov 2006
    • 4677

    #2
    Originally posted by reon
    #include <SQLAPI.h> // main SQLAPI++ header

    where did i get 'SQLAPI.h' library file....
    Did anyone know any details about this library files pleae post..
    i googled so many links didnt get...
    I mean it in Turbo C++
    I'm not sure what you're asking there. Was it already in a file you opened and examined? Just by the name I could guess at its function - SQL API - it's a database header, but could you rephrase your question?

    Comment

    • reon
      New Member
      • Feb 2007
      • 80

      #3
      i mean a pre processor directive in C++
      that is SQLAPI.h is a processor directive in C++.... like iostream.h and conio.h....
      where shall i get that pre processor directive...SQL API.h

      Comment

      • reon
        New Member
        • Feb 2007
        • 80

        #4
        the use of that pre processor directive (sqlapi.h)
        we can fetch SQL server with c++...
        That y i am in search with that header... in c++

        Comment

        • sicarie
          Recognized Expert Specialist
          • Nov 2006
          • 4677

          #5
          Originally posted by reon
          the use of that pre processor directive (sqlapi.h)
          we can fetch SQL server with c++...
          That y i am in search with that header... in c++
          Ok, I think you're asking where you can find the SQLAPI.h header file. The actual directive is the whole statement - the #include <SQLAPI.h> - as that tells the compiler to reference it in the main program, SQLAPI.h itself is a library file that holds API calls that can be invoked from the program.

          It looks like this will give you a reference on it, and if you really need it, it looks like this is part of it (and there are other references off to the left).

          Is that what you were asking?

          Comment

          • reon
            New Member
            • Feb 2007
            • 80

            #6
            Thanx Sicarie....

            Comment

            • sicarie
              Recognized Expert Specialist
              • Nov 2006
              • 4677

              #7
              Originally posted by reon
              Thanx Sicarie....
              No problem - let us know if you get stuck again.

              Comment

              Working...