Results 1 to 3 of 3

Thread: OLEDB FOR sybase ?

  1. #1
    mutley Guest

    OLEDB FOR sybase ?

    Hi

    Has OLEDB for SYBASE ?


    thank you in advance

  2. #2
    Phil McCormack Guest

    OLEDB FOR sybase ? (reply)

    You could try using the SQL Server OLE DB Provider.

    The Net libraries havn't changed much since SQL V 4.2 (which was Sybase 4.9.2 with 2 strored procedure changes)


    ------------
    mutley at 2/23/01 8:26:01 AM

    Hi

    Has OLEDB for SYBASE ?


    thank you in advance

  3. #3
    DogEatGod Guest

    OLEDB FOR sybase ? (reply)

    I don't know. But, This can help you?
    <%
    Dim strSQL
    Dim Conn
    Dim rsSQL


    &#39;Write Query
    strSQL = &#34;Select * From xx&#34;


    &#39;Connect to Sybase via ADODB
    Set Conn = Server.CreateObject(&#34;ADODB.Connection&#34
    Conn.Open &#34;Driver={Sybase System 11}; Srvr=xxx; Db=xx; Uid=xx; Pwd=xx;&#34;


    &#39;Execute Query
    Set rsSQL = Server.CreateObject(&#34;ADODB.recordset&#34
    rsSql.Open strSQL, Conn, 3
    %>


Posting Permissions

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