Sponsored Content
Top Forums Shell Programming and Scripting help regarding file ownership Post 81342 by amit007 on Thursday 18th of August 2005 01:55:54 PM
Old 08-18-2005
Lightbulb help regarding file ownership

hi friends,i have a doubt,if there is a file for which i have only read access then is there any way to execute it,plz reply soon
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Unix ownership from directories and file

Hi, I have newly installed sun solaris on my pc since I would like to learn something more about unix. During the installation, I had to assign a password for the super user root.After the installation, the book I am following suggested me to create a new user which I did. My home directory is... (1 Reply)
Discussion started by: giulianob
1 Replies

2. UNIX for Dummies Questions & Answers

Stubborn file ownership problem! Argh!

Hi, I have Apache running well on a Linux server, with Samba installed. I do must of my work in Notepad2 on a Windows box using Samba shares on which I am logged in as a user on the box (non-root). I recently decided to expand into cgi-perl. My /htdocs/cgi-bin directory is already part of a... (0 Replies)
Discussion started by: questor
0 Replies

3. UNIX for Advanced & Expert Users

File group ownership changing automatically

Hi everyone, Need help with an issue. The group ownership of files on my Solaris system is getting changed automatically. Could someone tell me the reason why? And how could I correct it? One more info- everytime the ownership changes, it changes to "x". Thanks :confused: (1 Reply)
Discussion started by: top_gun
1 Replies

4. Shell Programming and Scripting

file ownership confusion

Hello all, I have a script that runs on both the test and production box. The script is owned by a user (abcd for example) with permission set to 700. When this script is run as a root, the log file generated has owner and group as abcdowner and abcdgroup respectively. Now, when I run the same... (4 Replies)
Discussion started by: solaix14
4 Replies

5. UNIX for Dummies Questions & Answers

Access file ownership related questions

I have two issues; any help regarding this would be highly appreciated. We deployed a file abc using pqr id. So the owner is of abc file (shell script) is ‘pqr'. However, abc file is executed by ESP event and uses the id ‘xyz'. When the file abc is executed the owner of... (9 Replies)
Discussion started by: clearC
9 Replies

6. UNIX for Dummies Questions & Answers

What is the need of ownership to a file/dir?

Hi, I understand the permissions of a file/directory. I just needs to understand how ownership works. Can some one help me on this please? Thanks in advance. (6 Replies)
Discussion started by: praveen_b744
6 Replies

7. Windows & DOS: Issues & Discussions

Cygwin - file ownership changes unexpectedly from Administrator to cron_server

Hi Everyone, Not sure where to post but I am completely lost and need help urgently. Hope you guys can provide me the solution. I have Windows XP on my machine and was working fine with all the softwares. Today I installed "cygwin" on my machine and was playing with it. I am not sure what... (1 Reply)
Discussion started by: shekhar
1 Replies

8. Red Hat

Linux file ownership

Hi Friends, I am using RHEL5.3 64bit. I have a data filesystem on this, which have lot of files copied from another server. I cannot see correct owner and group displayed for these servers. It shows 113 for owner and 755 for group. Anybody please tell me why it is? Regards, Arumon (1 Reply)
Discussion started by: arumon
1 Replies

9. Shell Programming and Scripting

File Ownership Change

Hi, I have several directories under an upload directory where differnt users upload their files (with exxactly the same file name every week) using their own user ids. There is a requirement that once any user uploads the file I have to clean that file and remove extra whitespaces and... (3 Replies)
Discussion started by: vbhonde11
3 Replies

10. Solaris

How to set multiple ownership permission on a file/directory?

Hi, Any ideas to set multiple ownership permission on a file/directory on Solaris? I need a folder to have multiple ownership on the 2 nodes servers. The 2 nodes servers require to mount a SMBFS with different user ID. Please assist. Thanks. (6 Replies)
Discussion started by: freshmeat
6 Replies
MYSQLI_STMT_RESULT_METADATA(3)						 1					    MYSQLI_STMT_RESULT_METADATA(3)

mysqli_stmt::result_metadata - Returns result set metadata from a prepared statement

       Object oriented style

SYNOPSIS
mysqli_result mysqli_stmt::result_metadata (void ) DESCRIPTION
Procedural style mysqli_result mysqli_stmt_result_metadata (mysqli_stmt $stmt) If a statement passed to mysqli_prepare(3) is one that produces a result set, mysqli_stmt_result_metadata(3) returns the result object that can be used to process the meta information such as total number of fields and individual field information. Note This result set pointer can be passed as an argument to any of the field-based functions that process result set metadata, such as: omysqli_num_fields(3) omysqli_fetch_field(3) omysqli_fetch_field_direct(3) omysqli_fetch_fields(3) omysqli_field_count(3) omysqli_field_seek(3) omysqli_field_tell(3) omysqli_free_result(3) The result set structure should be freed when you are done with it, which you can do by passing it to mysqli_free_result(3) Note The result set returned by mysqli_stmt_result_metadata(3) contains only metadata. It does not contain any row results. The rows are obtained by using the statement handle with mysqli_stmt_fetch(3). PARAMETERS
o $ stmt -Procedural style only: A statement identifier returned by mysqli_stmt_init(3). RETURN VALUES
Returns a result object or FALSE if an error occurred. EXAMPLES
Example #1 Object oriented style <?php $mysqli = new mysqli("localhost", "my_user", "my_password", "test"); $mysqli->query("DROP TABLE IF EXISTS friends"); $mysqli->query("CREATE TABLE friends (id int, name varchar(20))"); $mysqli->query("INSERT INTO friends VALUES (1,'Hartmut'), (2, 'Ulf')"); $stmt = $mysqli->prepare("SELECT id, name FROM friends"); $stmt->execute(); /* get resultset for metadata */ $result = $stmt->result_metadata(); /* retrieve field information from metadata result set */ $field = $result->fetch_field(); printf("Fieldname: %s ", $field->name); /* close resultset */ $result->close(); /* close connection */ $mysqli->close(); ?> Example #2 Procedural style <?php $link = mysqli_connect("localhost", "my_user", "my_password", "test"); mysqli_query($link, "DROP TABLE IF EXISTS friends"); mysqli_query($link, "CREATE TABLE friends (id int, name varchar(20))"); mysqli_query($link, "INSERT INTO friends VALUES (1,'Hartmut'), (2, 'Ulf')"); $stmt = mysqli_prepare($link, "SELECT id, name FROM friends"); mysqli_stmt_execute($stmt); /* get resultset for metadata */ $result = mysqli_stmt_result_metadata($stmt); /* retrieve field information from metadata result set */ $field = mysqli_fetch_field($result); printf("Fieldname: %s ", $field->name); /* close resultset */ mysqli_free_result($result); /* close connection */ mysqli_close($link); ?> SEE ALSO
mysqli_prepare(3), mysqli_free_result(3). PHP Documentation Group MYSQLI_STMT_RESULT_METADATA(3)
All times are GMT -4. The time now is 03:25 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy