Sr. Web Developer
mediabistro.com
US-NY-New York

Justtechjobs.com Post A Job | Post A Resume

Accessing a Microsoft SQL Server database from PHP running under Linux
Sybase Client Library
Now, forget about the outdated libraries or the ones linked in php faq, unless you still have a libc5 system. (If you have a libc5 system you can download the libraries at http://www.php.net/extra).
The client library is distributed with Sybase Adaptive Server Enterprise, which can be downloaded for free from http://linux.sybase.com. Currently, Sybase Adaptive Server Enterprise for Linux version 11.9.2 is offered as a free release for development; support can be purchased separately. Download at least the file named sybase-common-11.9.2-1.i386.rpm, which contains the only files you need to compile php. It is just 5 Mb of download.
Next, unpack the files. I will assume the installation directory is /opt/sybase. Go to the php source directory and do a ./configure adding "--with-sybase-ct=/opt/sybase" to the usual configure options.
After having compiled and installed php, you need to add the location of the libraries to your library path. You can copy the shared libraries to /usr/local/lib; add the path to /etc/ld.so.conf; or simplyadd the line below to apachectl:
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/sybase/lib
The next thing you need to do is to declare the environment variable SYBASE to point to the sybase installation directory. If Sybase Open Client Library is loaded without this variable correctly set, it segfaults (apache segfaults) !! So you can add to apachectl:
export SYBASE=/opt/sybase
Now you must edit the "interfaces" file, which must be located in the installation dir. The interfaces file contains information about remote servers. A typical configuration to access a Windows machine with MS SQL installed with ip 192.168.1.4 and listening on port 1433 connected to the local lan (eth0) is this:
	relaxsql
	query tcp eth0 192.168.1.4 1433
	master tcp eth0 192.168.1.4 1433
The name "relaxsql" is the hostname which will be used by php functions to establish a connection to MS SQL on that machine. Be sure to set the correct permissions to the sybase installation directory and to this file; apache must have read access to this file.
Here is a sample php code to test everything. It connects as user "utente" with password "parola" and makes two queries to the default database for that user, as defined in MS SQL Server.

<?php

$numero
= mssql_connect('relaxsql' , 'utente' , 'parola' );
echo (
"ConnectID: $numero<br>\n");

$result=mssql_query('select * from tavoladiprova',$numero );
while (
$row=mssql_fetch_array($result)) {
    
$counter++;
    
$c1=$row['colonna1'];
    
$c2=$row['colonna2'];
    echo (
"$counter c1: $c1 c2: $c2<br>\n");
}

$result=mssql_query('INSERT into tavoladiprova values('kooooo','ooooook')',$numero);

mssql_close($numero);

?>
The default TDS protocol version used by sybase client library is TDS 5.0. In order to convince php to use TDS4.2 I've made a quick and dirty patch to the php code. This patch is against php-4.0.1pl2; you can use it if you want TDS 4.2.

[ Next Page ]

[Page 1]  [Page 2]  


Comments:
[unixODBC][Driver Manager]Data source name norasiel02/02/09 00:56
Fatal error: Call to undefined function mssqlsultan08/28/07 03:21
failed conecting to MSSQL in linux serverrexdale david07/10/07 19:52
pls provide the code for connecting the php amanish07/06/07 05:17
php5-sybase openSUSE 10.2JOE0106/10/07 06:41
Debian/Ubuntu easy to install but not to findYannick05/10/07 17:50
RE: MSSQL stored procedures and PHPmarco laura02/14/06 11:34
how to work on php in linux platformNKC12/07/05 23:15
±â³×½ººÏ µµÀü, 100¹è »¡¶óÁö°í ½¬¿öÁø ¿µ¾î¿ø¸® ÀÌÈÆ±â11/16/05 01:38
±â³×½ººÏ µµÀü, 100¹è »¡¶óÁö°í ½¬¿öÁø ¿µ¾î¿ø¸® ÀÌÈÆ±â11/16/05 01:36
RE: Sql server-php under windowsDinesh10/18/05 06:39
Syntax Errorjyoti09/20/05 07:06
RE: Call to undefined function: mssql_connectTahaba Jarvis09/14/05 15:16
RE: Call to undefined function: mssql_connect() Sum Sakira07/31/05 22:06
RE: Sql server-php under windowsEmmanuel Owoyemi06/29/05 10:30
RE: SQL programmingSevugan05/06/05 07:02
Pre-installed PHP, recompile PHP?Thomas Earl04/28/05 13:19
store procedureLuis04/01/05 13:15
Create TableZane Cosgrove03/28/05 21:21
RE: Can PHP access SQL Server 7.0 / 2000Chandresh Khandelwal03/28/05 02:41
don't understandReda02/28/05 12:39
Sql Connection With Php Possible codingsYogesh Kumar.M02/25/05 01:53
RE: Sql server-php under windowsSultan02/04/05 10:48
RE: Can PHP access SQL Server 2000 / 2000jubaque12/12/04 22:18
Ä«/µå/µ¹·Á¸·±â·Î/¸Á°¡Áö½ÅºÐ/²À º¸¼¼¿ä!ÀÌÇýÁø12/07/04 12:10
Ä«/µå/µ¹·Á¸·±â·Î/¸Á°¡Áö½ÅºÐ/²À º¸¼¼¿ä!ÀÌÇýÁø12/07/04 12:08
½Å.¿ë.ºÒ.·®.ÀÚ/´çÀÏ500/´ë.Ãâ.ºñ.¹ýÀÌÈñÁø12/06/04 03:29
½Å.¿ë.ºÒ.·®.ÀÚ/´çÀÏ500/´ë.Ãâ.ºñ.¹ýÀÌÈñÁø12/06/04 03:26
Ä«,µå,¿¬,ü,ÀÚ/¿¹.Á¤.ÀÚ ´ë,Ãâ 100-1000¸¸¿øÀÌ´ÙÇö12/05/04 11:52
´ë'Ãâ'°Å'Àý'½Ã'100%µÇ'°Ô'ÇÏ'´Â'¹æ'¹ýÇѰæ¿í12/05/04 03:53
SQL programmingPavan kumar12/04/04 03:41
½Å.¿ë.ºÒ.·®.ÀÚ/´çÀÏ500/´ë.Ãâ.ºñ.¹ýÀÌÈñÁø12/02/04 12:46
data base zaheer12/01/04 02:28
½Å.¿ë.ºÒ.·®/Ä«.µå.¿¬.ü/´ë.Ãâ/È¥ÀÚ/ÇØ.°áÇÏ´Â/¹æ.¹ý±èÇö¼­11/28/04 04:50
½Å.¿ë.ºÒ.·®/Ä«.µå.¿¬.ü/´ë.Ãâ/È¥ÀÚ/ÇØ.°áÇÏ´Â/¹æ.¹ý±èÇö¼­11/28/04 04:47
½Å.¿ë.ºÒ.·®.ÀÚ/´çÀÏ500/´ë.Ãâ.ºñ.¹ýÀÌÈñÁø11/28/04 01:17
½Å.¿ë.ºÒ.·®.ÀÚ/´çÀÏ500/´ë.Ãâ.ºñ.¹ýÀÌÈñÁø11/28/04 01:14
´ë'Ãâ'°Å'Àý'½Ã'100%µÇ'°Ô'ÇÏ'´Â'¹æ'¹ýÇѰæ¹Î11/23/04 21:39
´ë'Ãâ'°Å'Àý'½Ã'100%µÇ'°Ô'ÇÏ'´Â'¹æ'¹ýÇѰæ¹Î11/23/04 21:36
Ä«/µå/µ¹·Á¸·±â·Î/¸Á°¡Áö½ÅºÐ/²À º¸¼¼¿ä!ÀÌÁ¤¿¬11/18/04 21:35
Ä«/µå/µ¹·Á¸·±â·Î/¸Á°¡Áö½ÅºÐ/²À º¸¼¼¿ä!ÀÌÁ¤¿¬11/18/04 21:33
5.ºÐ.¸¸¿¡ 4.0¸¸.¿ø ¹«,ÀÌ.ÀÚ·Î ºô.¸®±âÁö¿µÈñ11/17/04 21:02
5.ºÐ.¸¸¿¡ 4.0¸¸.¿ø ¹«,ÀÌ.ÀÚ·Î ºô.¸®±âÁö¿µÈñ11/17/04 21:00
½Å.¿ë.ºÒ.·®.ÀÚ/´çÀÏ500/´ë.Ãâ.ºñ.¹ýÀÌÈñÁø11/15/04 19:07
½Å.¿ë.ºÒ.·®.ÀÚ/´çÀÏ500/´ë.Ãâ.ºñ.¹ýÀÌÈñÁø11/15/04 19:05
Ä«.µå.±ø.¾È.ÇÏ.°í.µ·.¸¸.µé.¾î.¾².´Â.ºñ.¹ýÀÌÈñÁø11/12/04 21:26
RE: ASP vs PHP?Dharmendra Ajwani10/20/04 06:54
a better wayGeorge Pauly10/02/04 16:53
php on true unixGOPALAKRISHNAN T02/16/04 10:46
½Å¿ëºÒ·®ÀÚ Ä«µåºú 2³âµÚ ¿ø±Ý¸¸ °±´Â¹æ¹ý!!ÀÌÁö¹Î01/22/04 04:23
½Å¿ëºÒ·®ÀÚ Ä«µåºûµ¶ÃË ÀüÈ­¹Þ±â ¿ä·É!!(Çʵ¶)½ÅÇý¿ø10/26/03 01:32
freeTDS slow performancenecmettin ozturk09/23/03 06:15
Sybase Client LibraryAmir06/05/03 08:41
Load a image file into a database using php/mmohsem saroghi03/03/03 03:37
SQL server and PHPSabir11/29/02 05:14
SQL serverayubu11/06/02 06:08
Linux to SQL2K via FreeTDSGregory Junker11/04/02 02:41
RE: Convertion from MS SQL Server to MySQl daPeter Hopfgartner10/19/02 12:23
Oracle - SQL ServerJavier del Pozo09/26/02 08:09
Oracle 7x & SQL*Forms 03.00.16Subair09/23/02 06:27
VB calling PHPJorge Vega09/19/02 11:41
connection between asp and sql serverjun09/13/02 04:59
Accessing Data Between MYSQL and Visual BasicPrashant N. M.09/11/02 04:57
RE: connect to mssql by phpbart09/10/02 20:33
RE: Sql server-php under windowsbart09/10/02 20:29
OpenLink][ODBC][SQL Server]Server SYBASE not Rouven Hernier09/03/02 08:51
m$ SQL server 2000 solutionTaQ08/28/02 17:11
Convertion from MS SQL Server to MySQl databavenkata vemulapalli08/24/02 16:38
Question About PHP and MS SQL Server 2000Numan08/16/02 09:11
connect to mssql by phpnam08/13/02 00:40
unix ODBC TDS driver isql MS SQL ProblemsAndi08/08/02 05:34
inline tds unix odbc isql MSSQL ProblemsAndi08/08/02 05:22
Problems with PHP and MSSQL and php_mssql.dllMaximlian King08/07/02 17:10
where can I download these files?ntjang08/06/02 22:08
sos :connect to sql serverfrank08/06/02 03:58
RE: Connecting MsSql-PHPbasuq08/02/02 04:30
Segmentation Fault when running mssql_connectJames07/31/02 20:21
logsegment??Virginia07/30/02 06:49
Database connection problemAshque07/21/02 17:12
Can PHP access SQL Server 2000 / 2000Dude07/19/02 18:36
ASP vs PHP?Dude07/19/02 18:32
partage d'applicationEl Hassan BOUNA07/19/02 10:16
"FOR XML" doesnt work that greatAlex07/16/02 14:27
SQL ServerBISHNUPRIYA LENKA07/11/02 03:06
connectivity with odbchiren07/10/02 11:38
Update problemdabratt07/09/02 06:24
Question about Unix/ MS AccessRob Scheepens07/01/02 10:55
Php on Linux ,Conn to MsSql But MultiByte Errlschang06/30/02 02:28
PHP over Solaris can connect to SQL 7Fernando Boveda06/21/02 14:18
Can't install Sybase on W2KBhu K.06/05/02 06:52
isql works ok, but php displays garblehinh2002060506/05/02 04:37
need helpRami Taha05/31/02 07:07
[SOLUTION] ctpublic.h not foundbentfork05/30/02 14:55
Help with SQL error message PleaseKaren Dunn05/29/02 15:55
RE: MS SQL database context errorSigi Huber05/29/02 10:48
PHP with VFP backendYrgo Ringo05/25/02 04:57
Inline TDS & iODBCRoland Schwarz05/24/02 12:22
Access 2000 on an Apache ServerLuigi Ardingo05/23/02 15:40
Doubt about linux ODBC driversSasi05/22/02 02:43
Connecting MsSql-PHPwahyu05/13/02 05:05
mysql admin???sparky05/01/02 07:02
reference connect to remote MSSQL from linux?Louis04/25/02 23:15
result from MSSQL gets truncatedStefan04/25/02 10:34
Trying to get PHP compiled with freeTDSSamuel NAKACHE04/24/02 03:16
RE: Trying to get PHP compiled with freeTDSKarine ZUERCHER03/25/02 09:28
mssql web administrationselcuk kardes03/25/02 04:50
Unicode MSSQL2KJose Gonell03/23/02 12:19
connecting to serverramie bueno03/14/02 06:17
mssql_next_result()Dmitry03/11/02 09:22
comparison between microsoft sql server vs ormunam03/08/02 16:54
Trying to get PHP compiled with freeTDSMarcel Schmedes03/06/02 09:57
2 different database.Srikanth03/04/02 13:28
Need help!!!Sam02/26/02 09:49
RE: Sql server-php under windowsraja02/22/02 10:35
RE: Call to undefined function: mssql_connect() Andy02/08/02 08:07
Todo sobre Sql ServerMarco02/05/02 16:05
Call to undefined function: mssql_connect() prashanth02/05/02 05:29
FreeTDS performance questionAbi Pothen01/31/02 18:13
UnixODBC & Inline driver problemsOlga01/23/02 14:49
RE: MSSQL stored procedures and PHPDuarte01/23/02 11:42
link php with internetMohamad Faizal Bin Othman 01/23/02 05:34
Warning: 0 is not a Sybase link index in /usrgoldencat01/23/02 05:34
RE: Error using FREETDS to connect MSSQLmirko ellinger01/22/02 03:48
ODBC Router for PHP4AugSoft01/21/02 10:52
help, please, ./configureJan Carlos01/21/02 10:52
Strange error message with Inline TDS ODBCGilles01/21/02 08:36
RE: Error using FREETDS to connect MSSQLvinod01/18/02 06:21
RE: Error using FREETDS to connect MSSQLDmitry01/18/02 02:08
Error using FREETDS to connect MSSQLprashanthn01/17/02 06:03
php codePrasanna01/17/02 02:43
Sql server-php under windowsJoan01/14/02 10:09
SOS, How to fix the Y2K problem!pan donghua01/04/02 07:26
RE: MSSQL stored procedures and PHPStewart Vardaman12/27/01 19:02
RE: Problems with PHP, freeTDS and SQL Server 7.0jeff12/26/01 21:55
help to connect to MSSQL raul12/26/01 18:29
how to connect VB to a SAP databaseMayra Bedolla12/18/01 13:38
How about a Pervasive SQL equivalent?Dav Dunca12/13/01 11:52
PHP-4.1.0 / TDS 7.0 : Beautiful!!!Daniel Kasak12/12/01 20:58
Calling an MS SQL-Stored Proc, from C / UNIXseema12/06/01 22:53
"interfaces" files in sybase ? please helpidiagung12/04/01 00:03
RE: Please help me - Connecting to MSSQL servrashmita amlekar11/27/01 13:10
RE: remote ms sql server and access 2000Charlie11/23/01 08:01
RE: MS SQL Server 2000 and LInuxCopas11/22/01 20:30
Problems with PHP, freeTDS and SQL Server 7.0Alec Schuster11/20/01 06:06
MS SQL database context errorOleha Marxy11/16/01 03:53
RE: MSSQL stored procedures and PHPJosef11/14/01 12:09
oracle on linux and ms sql srvr2k on win2khabib10/30/01 10:50
Freetds0.51, php4.0.6, apache on solaris x86?Kevin10/30/01 10:21
how can i rollback in ms-sql+php?jo,sung-chul10/25/01 21:52
MS SQL Server 2000 and LInuxAmit10/23/01 17:14
RE: Please help me - Connecting to MSSQL servzer0Kode10/17/01 03:42
RE: SQL Errorzer0Kode10/17/01 03:14
SQL Errorgusst10/16/01 10:17
PHP with MS SQL 2000 Umesh Ch Joshi10/15/01 06:29
PLEASE ERROR CONNECTING TO SQL SERVERValfrido10/11/01 10:34
Looking for host running FreeTDSTony Fogleman09/25/01 10:32
strings in mssqlSilvia09/19/01 12:38
Consultas Dinámicas en SQL ServerAlexis Morell09/19/01 11:09
How to enable php_mssql70.dllNaveen Noel J09/18/01 02:02
Freetds 0.52 + Php 3.0.18Mark Rinaudo09/16/01 19:49
Querying MS-Access from LinuxPascal Tufenkji09/11/01 04:43
RE: MSSQL stored procedures and PHPPablo09/05/01 07:15
RE: Problem executing Insert Query Dux09/04/01 19:45
RE: Error problem with inserting (')Dux09/04/01 19:38
RE: HEEELP! Connecting to MSSQL server in windowsDux09/04/01 19:35
Inserting and retrieving imageDux09/04/01 16:39
RE: FreeTDS and MS SQL 7 text fields...Scott Kalbach08/15/01 22:18
RE: MSSQL+PHP+WINDOWS2000p.jonard08/10/01 02:03
MSSQL connect login problemKevin Sayre08/09/01 15:22
how to interact unix database from sql serverrajesh bandla08/05/01 05:55
Pls help to configure ODBC and sql serverNambi08/01/01 22:22
solaris for intel + php-4.0.6 + freetds errorisland9907/24/01 22:13
solaris for intel + php-4.0.6 + freetds errorisland9907/24/01 22:13
RE: SYBTCL ProblemMike Kenyon07/24/01 01:14
RE: SYBTCL ProblemMike Kenyon07/24/01 01:09
RE: Dateformat SQL queryJack07/17/01 23:59
RE: Please help me - Connecting to MSSQL serverSebastien Le Calvez07/17/01 13:45
HEEELP! Connecting to MSSQL server in windowsSebastien Le Calvez07/17/01 13:37
--with-openlink deprecated, use --with-iodbcAndrew Hill07/11/01 06:20
remote ms sql server and access 2000smitha07/11/01 05:48
ERROR while runnign MS SQL Stored Proceduregopal07/05/01 15:41
RE: SQL Server 2000Francisco Hauva06/23/01 06:05
RE: Please help me - Connecting to MSSQL serverMohamed06/23/01 02:04
RE: Inline TDS ODBC setup helpJames Kelly06/23/01 01:04
Please help me - Connecting to MSSQL serverShankar06/18/01 17:26
RE: Inline TDS ODBC setup helpSaNgTim06/18/01 10:54
MSSQL+PHP+WINDOWS2000Alex06/14/01 02:41
More Info for MSSQL PHP LINUXApocryia06/11/01 12:21
mierdaanaskela06/08/01 02:35
UPdate in MSSQLKlaus Wietzorrek06/05/01 23:56
Cannot find php4.0.5 mssql functionsLee Leahu05/30/01 08:58
RE: MSSQL stored procedures and PHPShawn Johnston05/28/01 11:18
SQL Server 2000Kostya Belous05/25/01 03:15
RE: Error problem with inserting (')Kostya Belous05/25/01 03:08
RE: mssql w2k and c++ in linuxDaniel 05/22/01 06:53
Management tools for linuxJason Watson05/21/01 07:41
RE: where can find MSSQL7 library for PHP4?Ian Waters05/18/01 03:20
MSSQL stored procedures and PHPMichael Yevdokimov05/07/01 13:48
Char Encoding problems in FreeTDS+PHP+MSSQLGundas Vilkelis05/04/01 05:41
Patch for 4.0.5+Alberto Albericio05/03/01 23:50
php-4.0.4pl1 problemChristian Deiana04/25/01 05:01
how can i load image from sql server in phpRico04/10/01 16:21
Patch fpr php-4.0.4pl1Kaoe04/06/01 20:46
How to connect mssql with phpJai04/06/01 04:13
Freetds/PHP/Apahce on Solaris - AOKFastoJetson03/23/01 11:49
Fatal error: Call to undefined function: posiD.P.Batagoda03/23/01 00:49
ErrorITAY03/22/01 05:34
RE: Empty odbc_result()?=>odbc_result_all()Kuznetsov Yuri K.03/10/01 22:12
comparison between Acess and SQL serverjim03/08/01 19:45
RE: Can't display decimal from MS SQL 7.0. Need HBao Nguyen02/27/01 18:20
RE: Can't display decimal from MS SQL 7.0. Need HMark02/25/01 11:48
New : download FreeTDS / PHP4 rpmsPOURE02/20/01 08:56
RE: mssql_get_last_message() not availabletotof02/15/01 05:08
RE: php4, mssql7, nt5totof02/15/01 05:02
mssql_get_last_message() not availableArjan02/12/01 13:14
php4, mssql7, nt5Matt Parsons02/12/01 08:41
SQL SERVER WITH LINUXjames02/08/01 12:46
How do you use the tds driver odbc file?Mist02/06/01 15:50
Tryng to install sybase_ct supportAymeric BLAZY02/03/01 17:49
RE: FreeTDS and MS SQL 7 text fields...Tim McAdoo01/31/01 17:15
RE: where can find MSSQL7 library for PHP4?Dirk Dulfer01/31/01 07:32
redhat 7.0dimitri01/25/01 16:35
FREETDS characterSet problemPablo Carmona van Kempen01/23/01 05:29
SYBCTL SolutionTerry Lee01/21/01 22:32
RE: RPM with MS SQL supportIvan Capan01/19/01 13:45
unixODBC + Inline TDS ODBC driver Shawn Johnston01/15/01 15:55
RE: RPM with MS SQL supportRichard01/15/01 14:51
RE: RPM with MS SQL supportjason01/13/01 03:50
Patch for php-4.0.4Alberto01/09/01 11:35
Can't display decimal from MS SQL 7.0. Need HBao Nguyen12/12/00 16:46
Restart apache server, FreeTDS stop running ?Bao Nguyen12/07/00 03:31
RE: Problem executing Insert Query Jason Dumler12/01/00 15:02
Error Compiling FreeTDS0.51 with Php4.03Pl1Bao Nguyen11/30/00 21:08
It finally worked...Cyril11/28/00 12:20
Empty odbc_result() ?!?Cyril11/25/00 11:26
RE: Freetds on Solaris (FreeBSD)Ramiro Vazquez11/24/00 10:24
RE: Freetds on Solaris (FreeBSD)Robert Rothrock11/21/00 16:33
RE: unsupported functionsEtienne Jacob11/21/00 10:55
Dateformat SQL queryEtienne Jacob11/21/00 10:46
RE: 403pl1 <-> Microsoft SQL...Cyril11/20/00 14:42
RE: 403pl1 <-> Microsoft SQL...Alex Verstraeten11/18/00 18:16
403pl1 <-> Microsoft SQL...Cyril11/17/00 15:02
dscp localization Error.... T.TByung-Kun Kim11/17/00 10:30
RE: Patch for php-4.0.3pl1Alex Verstraeten11/14/00 07:21
RE: SYBTCL ProblemAlex V11/13/00 14:44
RE: Patch for php-4.0.3pl1leslie11/13/00 06:53
RE: Inline TDS Driver problemsAndrew McBeath11/12/00 18:20
RE: MS SQL 6.5Herco van Brug11/09/00 08:21
Inline TDS DriverAndrew11/09/00 04:03
store proceduresarigong martuani sormin11/09/00 02:53
RE: MS SQL 6.5raz11/07/00 11:47
Cannot run ./configure for php-4.0.2Harry11/06/00 07:10
RPM with MS SQL supportTroels Arvin10/31/00 22:19
Easysoft vs. SybaseNeal McLoughlin10/31/00 11:38
Patch for php-4.0.3pl1Palo Strapon10/31/00 07:17
unsupported functionsdiagnostix10/31/00 03:39
RE: FreeTDS and MS SQL 7 text fields...Herco van Brug10/30/00 04:23
MSSQL bug?Herco van Brug10/30/00 04:18
RE: FreeTDS and MS SQL 7 text fields...Alberto Dainotti10/26/00 15:13
RE: SYBTCL ProblemAlberto Dainotti10/26/00 15:09
RE: FreeTDS and MS SQL 7 text fields...Markus Blasl10/26/00 02:58
RE: FreeTDS and MS SQL 7 text fields...simon10/25/00 15:02
FreeTDS and MS SQL 7 text fields...Alex Kong10/24/00 16:31
Problem with INSERTsCaio Marcelo10/24/00 14:45
RE: Freetds on SolarisMarkus Grundmann10/22/00 19:42
SYBTCL ProblemNeal McLoughlin10/20/00 15:02
SYBTCLSatya Sangga10/20/00 04:25
Any successful case?Yung10/18/00 08:25
Freetds on SolarisJason Cono10/17/00 13:27
RE: URL Queries for SQLAndy Wilbourn10/16/00 12:28
Patch do not work with --with-javaDerek10/12/00 19:38
Doesn't Work in php-4.0.3 AARRGHutch Hicken10/12/00 10:24
Inline TDS ODBC setup helpBreughel M. Macabuhay10/11/00 23:56
ODBC does not necessarily add more layersAndrew Hill10/11/00 09:14
how to setup with Inline TDS ODBC driver?Parksh10/11/00 00:08
SQL2000 and XMLSimone Chiaretta10/09/00 16:48
RE: Problem executing Insert Query Dan K.10/06/00 07:03
RE: Problem executing Insert Query Richard10/05/00 14:18
where can find MSSQL7 library for PHP4?stream10/04/00 23:39
URL Queries for SQLdino chiesa10/03/00 23:14
sp_serverinfo is missingDavid Treves10/03/00 09:00
Problem with FreeTDSBill Van Pelt10/01/00 13:45
RE: MS SQL 6.5Alberto Dainotti10/01/00 11:03
MS SQL 6.5Mary Pham09/29/00 14:32
RE: Inline TDS ODBC driver problems...Olaf Jaeger09/29/00 11:40
FreeTDS and text data typeSebastian Enders09/28/00 05:55
RE: Inline TDS ODBC driver problems...Sebastian Enders09/28/00 05:46
Problem executing Insert Query mario09/28/00 02:45
RE: Inline TDS ODBC driver problems...Breughel M. Macabuhay09/27/00 19:09
RE: Inline TDS ODBC driver problems...Sebastian Enders09/27/00 12:37
Inline's TDS ODBCBreughel M. Macabuhay09/26/00 21:54
Inline TDS ODBC driver problems...Olaf Jaeger09/26/00 13:15
freetds on a cobaltMatthew White09/26/00 06:45
great... now what about filemaker pro 5??Brooks09/24/00 23:28
RE: Patch for php-4.0.2 ??Sebastian Enders09/24/00 10:57
RE: Patch?Adrian Kubala09/23/00 16:42
Patch?Adrian Kubala09/23/00 16:40
RE: Patch for php-4.0.2 ??Sebastian Enders09/22/00 11:58
Patch for php-4.0.2 ??Sebastian Enders09/22/00 05:44
Minor correciton on interfacces fileFrank Feingold09/20/00 13:37
 

If you are looking for help, please post on the appropriate forum here. Your questions will be answered much more quickly.

Add A Comment:

Name:

Email:

Subject:

Message:

To reduce spam posts, messages are now manually approved

You are not [logged in]. That means your account will not get credit for this post.