Sql error -.-

Results 1 to 9 of 9
  1. #1
    Account Upgraded | Title Enabled! Faora is offline
    MemberRank
    Aug 2012 Join Date
    243Posts

    Sql error -.-

    Take a Look:

    Warning: odbc_connect(): SQL error: [Microsoft][ODBC Driver Manager] Der Datenquellenname wurde nicht gefunden, und es wurde kein Standardtreiber angegeben, SQL state IM002 in SQLConnect.
    somebody can help?


  2. #2
    A.K.A /v\aX /--/ PHP Guru ToXiC L33T is offline
    MemberRank
    Aug 2007 Join Date
    Prestwich, UnitLocation
    1,112Posts

    Re: Sql error -.-

    No connection to MSSQL or missing ODBC driver?????

    Little more info please!! whats giving the error, what you trying to do that makes error.

  3. #3
    Account Upgraded | Title Enabled! Faora is offline
    MemberRank
    Aug 2012 Join Date
    243Posts

    Re: Sql error -.-

    it happens on an register script. i try to register but he give me this error

  4. #4
    Banned Montage is offline
    BannedRank
    Sep 2016 Join Date
    ⓩⓔⓝⓓLocation
    67Posts

    Re: Sql error -.-

    download sqlsrv and install it

  5. #5
    Account Upgraded | Title Enabled! Faora is offline
    MemberRank
    Aug 2012 Join Date
    243Posts

    Re: Sql error -.-

    funny.... i did it already

  6. #6
    A.K.A /v\aX /--/ PHP Guru ToXiC L33T is offline
    MemberRank
    Aug 2007 Join Date
    Prestwich, UnitLocation
    1,112Posts

    Re: Sql error -.-

    you need enable the EXT in PHP :-)

  7. #7
    Account Upgraded | Title Enabled! Faora is offline
    MemberRank
    Aug 2012 Join Date
    243Posts

    Re: Sql error -.-

    ext.jpg

    already done

  8. #8
    Banned Montage is offline
    BannedRank
    Sep 2016 Join Date
    ⓩⓔⓝⓓLocation
    67Posts

    Re: Sql error -.-

    It's likely the shortcut for setting ODBC data sources is pointing to the 32bit data sources instead of 64bit.
    Go to control panel -> administrative tools --> select data sources(ODBC) --> then right click on that file --> go to properties --> in the shortcut tab -> change the path from

    %windir%\System32\odbcad32.exe

    to

    %windir%\SysWOW64\odbcad32.exe

    and make your connection. the driver for MS Access will work fine now.
    If it doesnt work, try to connect to the ODBC with a sentence like this:

    $conn = odbc_connect("Driver={Microsoft Access Driver (*.mdb)};Dbq=C:\YourFolder\YourFile.mdb",'Youruser', 'YourPassword');

  9. #9
    Account Upgraded | Title Enabled! Faora is offline
    MemberRank
    Aug 2012 Join Date
    243Posts

    Re: Sql error -.-

    Fixed:

    forgot User DSN.



Advertisement