I have a database name that has a space in it. When I run
It connects to the server, however, when I run
I get an error that says "Could not locate entry in sysdatabases for database 'data'." Followed by "Unable to select database: data base" Now, since I know that the name of the database is "data base" (with the space) the first error seems to tell me that something about the space is causing issue with the mssql_select_db call. Is there some kind of place holder that I can use to connect to "data base" (like using "data%base" but % doesn't work either).
Thanks in advance.
Code:
mssql_connect(server, user, password)
Code:
mssql_select_db(data base)
Thanks in advance.