Quoting "Robert D. Young" <[EMAIL PROTECTED]>:

> That did it! Using:
> 
> <... stuff >
> $dbname = "[Test Database]"; 
> <... more stuff >
> mssql_select_db($dbname);
> 
> worked perfectly. Again, Thanks!

This is standard Microsoft (and maybe ODBC?) syntax. Using square brackets will 
work on most things including table names and field names with spaces in them. 
This will work fine

SELECT [table space].[field space] FROM [table space]

It doesn't mean that you should go around putting spaces in your database 
objects. That's never a good idea :)

Cheers,
 Graeme

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to