Skip to main content

Home/ Coders/ Group items tagged odbc

Rss Feed Group items tagged

anonymous

http://www.unixodbc.org/doc/FreeTDS.html#Configuration - 0 views

  • <?php # connect to a DSN "MSSQLTest" with a user "cheech" and password "chong" $connect = odbc_connect("MSSQLTest", "cheech", "chong"); # query the users table for all fields $query = "SELECT * FROM users"; # perform the query $result = odbc_exec($connect, $query); # fetch the data from the database while(odbc_fetch_row($result)) { $field1 = odbc_result($result, 1); $field2 = odbc_result($result, 2); print("$field1 $field2\n"); } # close the connection odbc_close($connect); ?>
    • anonymous
       
      Die Erweiterung php5-odbc muss installiert sein, dann soll das, so die Aussage hier, automatisch funktionieren....
  •  
    Aus einer Virtuellen Maschine mit Sybase ODBC connecten...  hier steht die Grundanleitung.
anonymous

FreeTDS | Free Development software downloads at SourceForge.net - 0 views

  •  
    Freier Treiber für MS-SQL und  Sybase-Datenbanken
Joel Bennett

Building the Connection URL for JDBC to SQL SERVER - 0 views

  •  
    how to connect to a SQL Server from JDBC (using Integrated Security)
1 - 3 of 3
Showing 20 items per page