Re: [PHP] ADOdb Operator question

2004-04-12 Thread Gabe
That helps, thanks!


Curt Zirzow [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 * Thus wrote Gabe ([EMAIL PROTECTED]):
  If you're using ADOdb, what is the name, purpose, and function of this
  operator?
 
  -
 
  e.g. $conn-Connect(false, 'scott', 'tiger', $oraname);

 The $conn variable is a adodb object that has methods and
 properties associated with it.  The - tells php to access the
 property or method of the object.


 Curt
 -- 
 I used to think I was indecisive, but now I'm not so sure.

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



Re: [PHP] ADOdb Operator question

2004-04-08 Thread Matt Matijevich
[snip]
e.g. $conn-Connect(false, 'scott', 'tiger', $oraname);
[/snip]

http://www.php.net/oop will give you some help.

I am not even sure if I can explain it correctly.

I believe you would say use - to call object methods and - to get/set
the class variables.  I am sure someone can give a better explanation
than that, or correct me if I am wrong.

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



RE: [PHP] ADOdb Operator question

2004-04-08 Thread Alex Hogan
 If you're using ADOdb, what is the name, purpose, and function of this
 operator?
 
 -
 
 e.g. $conn-Connect(false, 'scott', 'tiger', $oraname);
 
 I can follow some tutorials, but I'm just not sure when I need to use it
 and
 when I don't.

This is an explanation that's in the manual.

$conn-Open(Provider=SQLOLEDB; Data Source=localhost;Initial
Catalog=database; User ID=user; Password=password);

http://www.php.net/manual/en/ref.com.php



alex hogan


 -Original Message-
 From: Gabe [mailto:[EMAIL PROTECTED]
 Sent: Thursday, April 08, 2004 1:43 PM
 To: [EMAIL PROTECTED]
 Subject: [PHP] ADOdb Operator question
 
 If you're using ADOdb, what is the name, purpose, and function of this
 operator?
 
 -
 
 e.g. $conn-Connect(false, 'scott', 'tiger', $oraname);
 
 I can follow some tutorials, but I'm just not sure when I need to use it
 and
 when I don't.
 
 Thanks
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php


** 
The contents of this e-mail and any files transmitted with it are 
confidential and intended solely for the use of the individual or 
entity to whom it is addressed.  The views stated herein do not 
necessarily represent the view of the company.  If you are not the 
intended recipient of this e-mail you may not copy, forward, 
disclose, or otherwise use it or any part of it in any form 
whatsoever.  If you have received this e-mail in error please 
e-mail the sender. 
** 




Re: [PHP] ADOdb Operator question

2004-04-08 Thread Gabe
I tried the URL you supplied but I didn't see any reference to the operator
in question.  I hope I'm not blind


Alex Hogan [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
  If you're using ADOdb, what is the name, purpose, and function of this
  operator?
 
  -
 
  e.g. $conn-Connect(false, 'scott', 'tiger', $oraname);
 
  I can follow some tutorials, but I'm just not sure when I need to use it
  and
  when I don't.

 This is an explanation that's in the manual.

 $conn-Open(Provider=SQLOLEDB; Data Source=localhost;Initial
 Catalog=database; User ID=user; Password=password);

 http://www.php.net/manual/en/ref.com.php



 alex hogan


  -Original Message-
  From: Gabe [mailto:[EMAIL PROTECTED]
  Sent: Thursday, April 08, 2004 1:43 PM
  To: [EMAIL PROTECTED]
  Subject: [PHP] ADOdb Operator question
 
  If you're using ADOdb, what is the name, purpose, and function of this
  operator?
 
  -
 
  e.g. $conn-Connect(false, 'scott', 'tiger', $oraname);
 
  I can follow some tutorials, but I'm just not sure when I need to use it
  and
  when I don't.
 
  Thanks
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php


 **
 The contents of this e-mail and any files transmitted with it are
 confidential and intended solely for the use of the individual or
 entity to whom it is addressed.  The views stated herein do not
 necessarily represent the view of the company.  If you are not the
 intended recipient of this e-mail you may not copy, forward,
 disclose, or otherwise use it or any part of it in any form
 whatsoever.  If you have received this e-mail in error please
 e-mail the sender.
 **




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



Re: [PHP] ADOdb Operator question

2004-04-08 Thread Gabe
Yeah, I looked at that page, but didn't see any specifications for it.  I
guess I'll probably just have to use the tried and true method of trial and
error.

Thanks Matt.

Matt Matijevich [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 [snip]
 e.g. $conn-Connect(false, 'scott', 'tiger', $oraname);
 [/snip]

 http://www.php.net/oop will give you some help.

 I am not even sure if I can explain it correctly.

 I believe you would say use - to call object methods and - to get/set
 the class variables.  I am sure someone can give a better explanation
 than that, or correct me if I am wrong.

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



Re: [PHP] ADOdb Operator question

2004-04-08 Thread Curt Zirzow
* Thus wrote Gabe ([EMAIL PROTECTED]):
 If you're using ADOdb, what is the name, purpose, and function of this
 operator?
 
 -
 
 e.g. $conn-Connect(false, 'scott', 'tiger', $oraname);

The $conn variable is a adodb object that has methods and
properties associated with it.  The - tells php to access the
property or method of the object.


Curt
-- 
I used to think I was indecisive, but now I'm not so sure.

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