Re: [PHP] ODBC Functions & MS SQL Server 2005

2008-09-18 Thread Thodoris
On Thu, Sep 18, 2008 at 4:35 PM, Micah Gersten <[EMAIL PROTECTED]> wrote: If you need abstraction, check this out: http://us.php.net/pdo Thank you, Micah Gersten onShore Networks Internal Developer http://www.onshore.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vi

Re: [PHP] ODBC Functions & MS SQL Server 2005

2008-09-18 Thread Dan Joseph
On Thu, Sep 18, 2008 at 5:35 PM, Micah Gersten <[EMAIL PROTECTED]> wrote: > You can't upgrade PHP? > > Thank you, > Micah Gersten > onShore Networks > Internal Developer > http://www.onshore.com > > > > Dan Joseph wrote: > > On Thu, Sep 18, 2008 at 4:35 PM, Micah Gersten <[EMAIL PROTECTED]> > wrot

Re: [PHP] ODBC Functions & MS SQL Server 2005

2008-09-18 Thread Micah Gersten
You can't upgrade PHP? Thank you, Micah Gersten onShore Networks Internal Developer http://www.onshore.com Dan Joseph wrote: > On Thu, Sep 18, 2008 at 4:35 PM, Micah Gersten <[EMAIL PROTECTED]> wrote: > > >> If you need abstraction, check this out: >> http://us.php.net/pdo >> >> Thank you, >

Re: [PHP] ODBC Functions & MS SQL Server 2005

2008-09-18 Thread Dan Joseph
On Thu, Sep 18, 2008 at 4:35 PM, Micah Gersten <[EMAIL PROTECTED]> wrote: > If you need abstraction, check this out: > http://us.php.net/pdo > > Thank you, > Micah Gersten > onShore Networks > Internal Developer > http://www.onshore.com > > -- > PHP General Mailing List (http://www.php.net/) > To

Re: [PHP] ODBC Functions & MS SQL Server 2005

2008-09-18 Thread Micah Gersten
If you need abstraction, check this out: http://us.php.net/pdo Thank you, Micah Gersten onShore Networks Internal Developer http://www.onshore.com Dan Joseph wrote: > On Thu, Sep 18, 2008 at 3:36 PM, Dan Shirah <[EMAIL PROTECTED]> wrote: > > >> If you already have your results in an array, t

Re: [PHP] ODBC Functions & MS SQL Server 2005

2008-09-18 Thread Dan Joseph
On Thu, Sep 18, 2008 at 3:36 PM, Dan Shirah <[EMAIL PROTECTED]> wrote: > > If you already have your results in an array, try using count($result); > That should count the number of results returned to your result array. > > Or you could try uncommenting the mssql extension in your php.ini file and

Re: [PHP] ODBC Functions & MS SQL Server 2005

2008-09-18 Thread Dan Shirah
On 9/18/08, Dan Joseph <[EMAIL PROTECTED]> wrote: > Hi, > > Anyone else using the odbc_* functions to interact with MS SQL Server 2005? > > I'm having a problem getting odbc_num_rows() to return anything other than > -1 when querying a stored procedure. I can get it to work using Top in a > norma

[PHP] ODBC Functions & MS SQL Server 2005

2008-09-18 Thread Dan Joseph
Hi, Anyone else using the odbc_* functions to interact with MS SQL Server 2005? I'm having a problem getting odbc_num_rows() to return anything other than -1 when querying a stored procedure. I can get it to work using Top in a normal query (non-stored procedure). SELECT Top 100 * FROM Tabl