CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Database

  1. #1
    Join Date
    May 1999
    Location
    Malaysia
    Posts
    73

    Database

    I am using WinNT 4 as a web server, and i would like to write an applet that will access a database. (Informix Database)

    What do i need to install in order it to work?
    I am using MS Visual J++ 6.0.

    Do i need to install JDBC driver? And what is JDBC driver?




  2. #2
    Join Date
    Dec 1999
    Location
    Chonghe, Taipei County, Taiwan, R.O.C.
    Posts
    231

    Re: Database

    JDBC is the technique that provide the common interface for so many different API
    offered by different database vendors. Using JDBC can help programmer to program
    your Java application in an consistent interface to access data in the database. Most
    of database vendors support JDBC driver for thier database. Programmers should not
    care about that. You may contact the vendor of Informix to understand if they support
    the JDBC driver which can be use in the applet but not just applications. Some JDBC
    driver may be used in the applications but not in the applet. You should take care of
    it.
    good luck
    Alfred Wu


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