Results 1 to 6 of 6

Thread: Creating New Datasource

  1. #1

    Thread Starter
    New Member
    Join Date
    Apr 2000
    Posts
    6

    Question

    I want to create a New datasoruce (ODBC) through VB.
    How to bring a ODBC driver at runtime in vb.
    Waiting for the reply....

  2. #2
    Addicted Member
    Join Date
    Aug 1999
    Location
    Ottawa,ON,Canada
    Posts
    217
    Try here for creating DSNs through VBMSDN Q171146 or here MSDN Q184608

    As for "How to bring a ODBC driver at runtime in VB.", I'm not quite sure what you're asking. You want to install a driver at runtime from VB? Or do you mean you want package the drivers with you app for distribution? Usually if you want to use drivers from ODBC vendors you have to use their setup package to install them. It's just easier that way anyways.


  3. #3

    Thread Starter
    New Member
    Join Date
    Apr 2000
    Posts
    6

    Thanks for your kind help

    Sir,
    What i am trying to say is , It is possible
    to create a dsn by going to control panel->
    ODBC driver and creating system dsn or user dsn.
    Actually, i want to bring the set of drivers
    in my runtime program so that it is easy for
    me to select any data source name.

    One more, Consider i am client , i want to
    find the Server ip address ann after that
    i have to host my program in the server.

    Waiting for reply,

  4. #4
    Member
    Join Date
    Mar 2003
    Location
    Hyderabad
    Posts
    46

    IP and Name of the Server

    Hai... try out this...




    Private Const WS_VERSION_REQD = &H101
    Private Const WS_VERSION_MAJOR = WS_VERSION_REQD \ &H100 And &HFF&
    Private Const WS_VERSION_MINOR = WS_VERSION_REQD And &HFF&
    Private Const MIN_SOCKETS_REQD = 1
    Private Const SOCKET_ERROR = -1
    Private Const WSADescription_Len = 256
    Private Const WSASYS_Status_Len = 128

    Private Type HOSTENT
    hName As Long
    hAliases As Long
    hAddrType As Integer
    hLength As Integer
    hAddrList As Long
    End Type

    Private Type WSADATA
    wversion As Integer
    wHighVersion As Integer
    szDescription(0 To WSADescription_Len) As Byte
    szSystemStatus(0 To WSASYS_Status_Len) As Byte
    iMaxSockets As Integer
    iMaxUdpDg As Integer
    lpszVendorInfo As Long
    End Type

    Private Declare Function WSAGetLastError Lib "WSOCK32.DLL" () As Long
    Private Declare Function WSAStartup Lib "WSOCK32.DLL" (ByVal _
    wVersionRequired As Integer, lpWSAData As WSADATA) As Long
    Private Declare Function WSACleanup Lib "WSOCK32.DLL" () As Long

    Private Declare Function gethostname Lib "WSOCK32.DLL" (ByVal HostName$, ByVal HostLen As Long) As Long
    Private Declare Function gethostbyname Lib "WSOCK32.DLL" (ByVal HostName$) As Long
    Private Declare Sub RtlMoveMemory Lib "KERNEL32" (hpvDest As Any, ByVal hpvSource&, ByVal cbCopy&)


    Function hibyte(ByVal wParam As Integer)

    hibyte = wParam \ &H100 And &HFF&

    End Function

    Function lobyte(ByVal wParam As Integer)

    lobyte = wParam And &HFF&

    End Function

    Sub SocketsInitialize()
    Dim WSAD As WSADATA
    Dim iReturn As Integer
    Dim sLowByte As String, sHighByte As String, sMsg As String

    iReturn = WSAStartup(WS_VERSION_REQD, WSAD)

    If iReturn <> 0 Then
    MsgBox "Winsock.dll is not responding."
    End
    End If

    If lobyte(WSAD.wversion) < WS_VERSION_MAJOR Or (lobyte(WSAD.wversion) = _
    WS_VERSION_MAJOR And hibyte(WSAD.wversion) < WS_VERSION_MINOR) Then

    sHighByte = Trim$(str$(hibyte(WSAD.wversion)))
    sLowByte = Trim$(str$(lobyte(WSAD.wversion)))
    sMsg = "Windows Sockets version " & sLowByte & "." & sHighByte
    sMsg = sMsg & " is not supported by winsock.dll "
    MsgBox sMsg
    End
    End If

    'iMaxSockets is not used in winsock 2. So the following check is only
    'necessary for winsock 1. If winsock 2 is requested,
    'the following check can be skipped.

    If WSAD.iMaxSockets < MIN_SOCKETS_REQD Then
    sMsg = "This application requires a minimum of "
    sMsg = sMsg & Trim$(str$(MIN_SOCKETS_REQD)) & " supported sockets."
    MsgBox sMsg
    End
    End If

    End Sub

    Sub SocketsCleanup()
    Dim lReturn As Long

    lReturn = WSACleanup()

    If lReturn <> 0 Then
    MsgBox "Socket error " & Trim$(str$(lReturn)) & " occurred in Cleanup "
    End
    End If

    End Sub

    Sub GetServerName()

    Dim HostName As String * 256
    Dim hostent_addr As Long
    Dim host As HOSTENT
    Dim hostip_addr As Long
    Dim temp_ip_address() As Byte
    Dim i As Integer
    Dim ip_address As String

    If gethostname(HostName, 256) = SOCKET_ERROR Then
    MsgBox "Windows Sockets error " & str(WSAGetLastError())
    Exit Sub
    Else
    HostName = Trim$(HostName)
    End If

    hostent_addr = gethostbyname(HostName)

    If hostent_addr = 0 Then
    MsgBox "Winsock.dll is not responding."
    Exit Sub
    End If

    RtlMoveMemory host, hostent_addr, LenB(host)
    RtlMoveMemory hostip_addr, host.hAddrList, 4

    MsgBox HostName

    'get all of the IP address if machine is multi-homed

    Do
    ReDim temp_ip_address(1 To host.hLength)
    RtlMoveMemory temp_ip_address(1), hostip_addr, host.hLength

    For i = 1 To host.hLength
    ip_address = ip_address & temp_ip_address(i) & "."
    Next
    ip_address = Mid$(ip_address, 1, Len(ip_address) - 1)

    MsgBox ip_address

    ip_address = ""
    host.hAddrList = host.hAddrList + LenB(host.hAddrList)
    RtlMoveMemory hostip_addr, host.hAddrList, 4
    Loop While (hostip_addr <> 0)

    End Sub
    satyarao

  5. #5
    Lively Member
    Join Date
    Sep 2002
    Posts
    90

    Thumbs up

    Here is how to autopopulate a combo box with the systems DSN's and Drivers.

    If you create 2 combo boxes named cboDrivers and cboDSNList.

    Add this to declarations.

    Private Declare Function SQLDataSources Lib "ODBC32.DLL" (ByVal henv&, ByVal fDirection%, ByVal szDSN$, ByVal cbDSNMax%, pcbDSN%, ByVal szDescription$, ByVal cbDescriptionMax%, pcbDescription%) As Integer
    Private Declare Function SQLAllocEnv% Lib "ODBC32.DLL" (env&)
    Const SQL_SUCCESS As Long = 0
    Const SQL_FETCH_NEXT As Long = 1

    Then add this sub
    Sub GetDSNsAndDrivers()
    Dim i As Integer
    Dim sDSNItem As String * 1024
    Dim sDRVItem As String * 1024
    Dim sDSN As String
    Dim sDRV As String
    Dim iDSNLen As Integer
    Dim iDRVLen As Integer
    Dim lHenv As Long 'handle to the environment

    On Error Resume Next
    cboDSNList.AddItem "(None)"

    'get the DSNs
    If SQLAllocEnv(lHenv) <> -1 Then
    Do Until i <> SQL_SUCCESS
    sDSNItem = Space$(1024)
    sDRVItem = Space$(1024)
    i = SQLDataSources(lHenv, SQL_FETCH_NEXT, sDSNItem, 1024, iDSNLen, sDRVItem, 1024, iDRVLen)
    sDSN = Left$(sDSNItem, iDSNLen)
    sDRV = Left$(sDRVItem, iDRVLen)

    If sDSN <> Space(iDSNLen) Then
    cboDSNList.AddItem sDSN
    cboDrivers.AddItem sDRV
    End If
    Loop
    End If
    'remove the dupes
    If cboDSNList.ListCount > 0 Then
    With cboDrivers
    If .ListCount > 1 Then
    i = 0
    While i < .ListCount
    If .List(i) = .List(i + 1) Then
    .RemoveItem (i)
    Else
    i = i + 1
    End If
    Wend
    End If
    End With
    End If
    cboDSNList.ListIndex = 0
    End Sub



    When you want to populate the combo boxes Just call the GetDSNsAndDrivers Sub



    Hope that helps.

  6. #6
    Member
    Join Date
    Mar 2003
    Location
    Hyderabad
    Posts
    46
    Hai,

    I got the solution to my problem

    http://p2p.wrox.com/archive/crystal_reports/2002-08/

    it has given clarified... solution

    any how thank you for your suggestion..
    satyarao

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