--- David Banning <[EMAIL PROTECTED]> wrote:
> The company I am working with is using an old database, which 
> doesn't even support memo field beyond 256 characters, so it is probably
> too difficult, and not worth trying to interface the database with php.
> 
> I was wondering how easy it would be to have php access the database
> via SQL. The data we are looking for is accessible via SQL.

I think you are confused about what SQL is.

What you need to access a database is some sort of library (driver) that
translates your SQL statements into something specific to the database you are
interacting with.

For performance, you always want to try to use a native driver, but in your
case, you might be restricted to something like ODBC. SQL is just a query
language.

Chris

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to