Sponsored Content
Contact Us Forum Support Area for Unregistered Users & Account Problems UNIX.com links from Google yield invalid thread error Post 302882393 by Unregistered on Monday 6th of January 2014 03:49:11 PM
Old 01-06-2014
UNIX.com links from Google yield invalid thread error

If one enters a Google search query like

Code:
site:unix.com mysql php

and clicks on the resulting link, one gets the message below:

Code:
vBulletin Message
No Thread specified. If you followed a valid link, please notify the administrator

Unregistered
 

5 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

links in UNIX

Hi Can you please tell me how to create a softlink to a file on a different partition ? thanks (3 Replies)
Discussion started by: infyanurag
3 Replies

2. UNIX for Dummies Questions & Answers

Collection of Unix Links

Hi, Is there is a good collection of Links to Unix Related stuff? Regards, Kriss (1 Reply)
Discussion started by: Kriss
1 Replies

3. Shell Programming and Scripting

01.30 Invalid shell error

Hi, I am getting the error 01.30 Invalid shell error I am running the bash shell script in the korn login shell. I have mentioned the #!/bin/bash statement in the my script but not sure why it is giving this error to me.. (4 Replies)
Discussion started by: mr_harish80
4 Replies

4. Post Here to Contact Site Administrators and Moderators

"SunOS/Solaris Links" Sticky thread need an update

7 out of 8 links in one of the two Solaris Sticky threads are dead: https://www.unix.com/solaris/17943-sunos-solaris-links.html Could a moderator update them or unlock the thread to allow contributors to provide up to date replacement links ? (3 Replies)
Discussion started by: jlliagre
3 Replies

5. Shell Programming and Scripting

Google ads links

I'm trying to reconstruct the google ads as they get displayed in script tags in a html page and place them in a wget command. Anyone tried that before? Thank you (4 Replies)
Discussion started by: gfhsd
4 Replies
INGRES_ERRSQLSTATE(3)							 1						     INGRES_ERRSQLSTATE(3)

ingres_errsqlstate - Get the last SQLSTATE error code generated

SYNOPSIS
string ingres_errsqlstate ([resource $link]) DESCRIPTION
Returns a string containing the last SQLSTATE, or NULL if no error has occurred. If a $link resource is passed to ingres_errsqlstate(3), it returns the last error recorded for the link. If no link is passed, then ingres_errsqlstate(3) returns the last error reported using the default link. The function, ingres_errsqlstate(3), should always be called after executing any database query. Calling another function before ingres_errsqlstate(3) is called will reset or change any error message from the last Ingres function call. PARAMETERS
o $link - The connection link identifier RETURN VALUES
Returns a string containing the last SQLSTATE, or NULL if no error has occurred. EXAMPLES
Example #1 Get the last SQLSTATE error code generated <?php $link = ingres_connect($database, $user, $password); $result = ingres_query($link, "select * from table"); $error_sqlstate = ingres_errsqlstate($link); if (!is_null($error_sqlstate)) { echo "An error occurred - " . $error_sqlstate; } ?> SEE ALSO
ingres_errno(3), ingres_error(3), ingres_next_error(3). PHP Documentation Group INGRES_ERRSQLSTATE(3)
All times are GMT -4. The time now is 08:57 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy