Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. irisha2

    Record/playback failure

    I'm new to a automation testing. I have a couple of questions ... In what situations would I overwrite an existing log? Can anyone tell me what can cause script playbacks to fail? What are disadvantages of using record/playback techniques in automated testing? Any help will be much...
  2. irisha2

    VB functions

    Thank you, guys I found a good Visual Basic tutorial using links you sent.
  3. irisha2

    VB functions

    Thanks for help with that... I have another question... Should I use Left() and Right() functions when I want to compare two character strings (to know whether they match)? I can not find any information on string functions...
  4. irisha2

    VB functions

    I'm new to programming world. Can somebody help me with the problem below? Suppose, I have a name in a field or variable that is in the "last,first" name format. What function could break it into separate variables for first and last names? How to perform this task the best? Does...
  5. irisha2

    Connecting to mysql db

    Thanks! I resolved this problem... You're wright. It was a permission issue (wrong password in user table).
  6. irisha2

    Problem with printing query result

    Hi Jim, Thank you very much for your help. It works! There is also another way do to the same thing: while ($user_result = mysql_fetch_array($result)) { echo &quot;Name: &quot;.$user_result[&quot;fname&quot;]. &quot;,&quot;.$user_result[&quot;lname&quot;].&quot;<br\n>&quot;; }
  7. irisha2

    Problem with printing query result

    Hello everybody, I'm trying to print out the mysql query result but I could manage to get only 1 row of data from the table. What am I doing wrong? Please help me! I'm just a beginner in Mysql or PHP and this is my first script. $query = &quot;select lname, fname from main&quot; or...
  8. irisha2

    Connecting to mysql db

    Hi Gerry, I've tried localhost, my static IP address, my actual hostname, etc... The PHP manual states that the server name might also need to be suffixed with the port number... 3306 is the port number listed in my /etc/services file... Now, having said that, MySql and Sybase are quite...
  9. irisha2

    Connecting to mysql db

    Please help with database connection. I'm attempting to connect to mysql db from php for the first time, and I keep getting the following error: Warning: Access denied for user: 'mysql@mysysname.org' (Using password: YES) in /home/user/public_html/main.php on line 65 Error connecting db...

Part and Inventory Search

Back
Top