Sponsored Content
Top Forums Programming Problem to create class to store data Post 302453031 by frank_rizzo on Monday 13th of September 2010 10:47:43 PM
Old 09-13-2010
A class in any language can handle different data types. You need to provide more details so people can assist you. What exactly are you trying to do? What language? What have you tried? Please read the forum rules.
 

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to store Data in a File

I want to read a data from a read command and store it in a file...... Plz send me how I can do that Ex: read val and I want to store this val in a file called temp. (2 Replies)
Discussion started by: krishna_sicsr
2 Replies

2. Shell Programming and Scripting

extracting data and store in database

Hello all, I have this text file data. The data are separated by comma in three column and space or line feed to start a new row anderson helberg, Jane, brother Sister ,mother,grandpa bombay,new york, china I would like store them in the following format. field1 ... (2 Replies)
Discussion started by: mam
2 Replies

3. Shell Programming and Scripting

store the table data in excel file

Hello - I have a below table and i want to extract the data into excel sheet and send to different location. Here is the table structure... SQL> desc t_i1_exportdocs Name Null? Type ----------------------------------------- --------... (11 Replies)
Discussion started by: govindts
11 Replies

4. Shell Programming and Scripting

Store data from dynamic website table

hi everybody, Asking for something that I´m not sure if it´s possible to implement. I hope be clear enough. Well, my issue is that I´m looking how to copy or extract a particular table content of a website. I get the content from a external feed (Iframe format), the content is updated every... (1 Reply)
Discussion started by: cgkmal
1 Replies

5. Programming

Eclipse plugin to create class diagrams

Hi Guys, I wonder if anyone is aware of a eclipse plugin that I can use to create class diagrams. Thanks!!. (1 Reply)
Discussion started by: arizah
1 Replies

6. Shell Programming and Scripting

create an array which can store the strings from the user input in shell script

I want to create an array which can store the strings from the user input in shell script . example :- I want to store the 5 fruits name in a single array which the user provides . (1 Reply)
Discussion started by: Pkast
1 Replies

7. UNIX for Advanced & Expert Users

Get pointer for existing device class (struct class) in Linux kernel module

Hi all! I am trying to register a device in an existing device class, but I am having trouble getting the pointer to an existing class. I can create a class in a module, get the pointer to it and then use it to register the device with: *cl = class_create(THIS_MODULE, className);... (0 Replies)
Discussion started by: hdaniel@ualg.pt
0 Replies

8. UNIX for Dummies Questions & Answers

Extract data from a file and store it in a variable

Hi , I have an file like below , cat input.txt 'Pattern2' => 'blahdalskdahdlahldahdlakhdlahdlkajdlkaadasdadadadadadadasda ajlalnalndklandlaksdlkaddd' 'Pattern2' => 'aohaonalkndlanldandlandklasnldnaldnak' ............ ........ ..... Here is what am trying to do , I want to grep for... (3 Replies)
Discussion started by: scott_cog
3 Replies
INSERT(3PVM)							  PVM Version 3.4						      INSERT(3PVM)

NAME
pvm_insert - store data in pvmd database [In Version 3.4: Relaced by pvm_putinfo] SYNOPSIS
C int cc = pvm_insert( char *name, int index, int data ) Fortran Not available PARAMETERS
name The class name, a null-terminated string. index The class index, >= 0 or -1 for first available. data Data to store in the <name, index> entry. DESCRIPTION
The master pvmd maintains a simple database, which can be used to store values such as tids and make them accessible anywhere within a vir- tual machine. This is useful when building an application such as the group server, which must advertise its task id so clients can regis- ter send messages to register. The database stores integer data, indexed by <name, index> pairs. The name may be any null-terminated string and the index any non-nega- tive integer. Database entries are grouped by name into classes; index may be specified as -1 to store or retrieve the first available instance in a class. These functions are not part of the group library, but are the underlying mechanism used to implement it. pvm_insert stores data at the given index. If index is -1, the data is stored at the first available index in the named class, starting at 0. ERRORS
If successful, pvm_insert returns the index at which the data was stored, otherwise it returns a negative result. The following error con- ditions can be returned: PvmBadParam giving an invalid argument value. PvmDupEntry the requested <name, index> pair is already in use. SEE ALSO
pvm_delete(3PVM), pvm_lookup(3PVM) 27 June, 1994 INSERT(3PVM)
All times are GMT -4. The time now is 10:24 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy