Richard Quadling wrote:
2009/11/11 Chris :
Plus the assumption that they are on the same server and that the user
you're connecting with has access to both databases..
See the initial post.
$db_material = mysql_connect("localhost", "root", "secret");
$db_labor = mysql_connect("localhost", "ro
2009/11/11 Chris :
> Plus the assumption that they are on the same server and that the user
> you're connecting with has access to both databases..
See the initial post.
$db_material = mysql_connect("localhost", "root", "secret");
$db_labor = mysql_connect("localhost", "root", "secret");
2 conne
2009/11/11 Chris :
> Andy Shellam (Mailing Lists) wrote:
>>
>> Hi,
>>
>>>
>>> If the databases are in the same mysql server, then you could qualify
>>> the table select with the database name and simply re-use the
>>> connection
>>>
>>> select db_name.table_name.field from db_name.table_name [where
Andy Shellam (Mailing Lists) wrote:
Hi,
If the databases are in the same mysql server, then you could qualify
the table select with the database name and simply re-use the
connection
select db_name.table_name.field from db_name.table_name [where]
No offence, but if I saw this in an applicat
Hi,
If the databases are in the same mysql server, then you could qualify
the table select with the database name and simply re-use the
connection
select db_name.table_name.field from db_name.table_name [where]
No offence, but if I saw this in an application's source code, I'd run
a mile.
2009/11/11 Bastien Koert :
> On Tue, Nov 10, 2009 at 4:14 PM, Timothy Legg
> wrote:
>>
>> Hello,
>>
>> Is it wrong to have mysql_connect() called twice within a single PHP
>> document, such as this? I have been running into some fairly annoying
>> query failures that commute when I change the or
On Tue, Nov 10, 2009 at 4:14 PM, Timothy Legg wrote:
>
> Hello,
>
> Is it wrong to have mysql_connect() called twice within a single PHP
> document, such as this? I have been running into some fairly annoying
> query failures that commute when I change the order of these two blocks of
> code. I
Nehemias Duarte wrote:
That is great for me to keep in mind for future reference. However, is
it ever appropriate to connect to the database twice in a single script.
Two ways I can think of doing this would be:
CASE 1<<
//Connect to server (materials)
$db_material = mysql_connect("localhost",
es
if you did?
In the second example, the connection was closed in part of a script and
connect to the database again comes later in the script.
Is this "allowable"?
-Original Message-----
From: Chris [mailto:dmag...@gmail.com]
Sent: Tuesday, November 10, 2009 4:51 PM
To: php
Timothy Legg wrote:
Hello,
Is it wrong to have mysql_connect() called twice within a single PHP
document, such as this? I have been running into some fairly annoying
query failures that commute when I change the order of these two blocks of
code. I am currently working around this by repeatedl
10 matches
Mail list logo