Results 1 to 2 of 2

Thread: Odbc Dsn

  1. #1
    Join Date
    Apr 2003
    Posts
    1

    Wink Odbc Dsn

    i have problem with ODBC DSN.i have to reterive data from remote machine using DSN either connection oriented or connectionless. which one is preferrable. problem enconter with DSN connection oriented.

  2. #2
    Join Date
    Mar 2003
    Location
    NJ
    Posts
    201
    The TCP protocol is a connection-oriented protocol,so it offers reliable delivery.

    TCP should be used in situations where reliability is the most important factor.

    FTP, SMTP and Telnet are examples of protocols that employ TCP.


    UDP is considered a connectionless protocol.In some networks, UDP can be substituted for TCP.

    UDP is best suited for applications that don't need to assemble sequences of segments and don't require a connection.

    TFTP, SNMP and DNS are examples of protocols that employ UDP.

Posting Permissions

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