Sponsored Content
Top Forums Programming Multidimensional array of strings with vector. Post 302484075 by Corona688 on Wednesday 29th of December 2010 04:04:20 PM
Old 12-29-2010
"when things crash, make the array bigger" is not the answer.

I'm still trying to boil down just what you're trying to do, but my guess so far? There's no error checking for most of what you do. If you ever get data (or lack of data) you don't expect, it uses it anyway. Check everything.

Also, since you're using localtime() anyway, you might as well save yourself a mountain of work and use strftime too:

Code:
#include <time.h>
#include <string>
#include <iostream>
using namespace std;

int main(void)
{
        time_t t=time(NULL);
        char todaysdate[32];
        strftime(todaysdate, 32, "%Y%m%d", localtime(&t));

        cout << "today's date is " << todaysdate << endl;
}

---------- Post updated at 03:04 PM ---------- Previous update was at 02:08 PM ----------

mysql's row type seems very twitchy.

Code:
 Query querya=conn.query();
  querya << query;
  querya.storein(results);

  printf("%d rows\n", results.size());

  for(int n=0; n<results.size(); n++)
  {
    printf("row has %d fields\n", results[n].size());
  }

Code:
2 rows
row has 2520205 fields
row has 2520205 fields

Needless to say, you're not the only one mystified. Are you sure you want to use the C++ interface and not the C one?

Last edited by Corona688; 12-29-2010 at 04:19 PM..
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

multidimensional array in perl

i'm trying to open a file with three or more columns and an undetermined, but finite number of rows. I want to define an array for each row with each element of the row as a sub array. The columns are separated by tabs or spaces. Here's the file: 12x3.12z34b.342sd3.sds 454.23.23.232 ... (9 Replies)
Discussion started by: prkfriryce
9 Replies

2. Shell Programming and Scripting

Awk multidimensional Array

Hello Experts,, Can anybody give me a brief idea what is following bold letter statement is for!! what is the term called so that I can google for it.. It seems to be an array inside another array.. awk' /TXADDR/ { txaddr=$NF } ##understood /TXDATA/ { txdata]=$NF... (1 Reply)
Discussion started by: user_prady
1 Replies

3. Shell Programming and Scripting

AWK multidimensional array

In a single dim. awk array, we can use : <index> in <array name> to determine whether a particualar index exists in the array or not. Is there a way to achieve this in a awk multi dim. array ? (4 Replies)
Discussion started by: sinpeak
4 Replies

4. Programming

multidimensional array using c++ vector

Hi! I need to make dynamic multidimensional arrays using the vector class. I found in this page How to dynamically create a two dimensional array? - Microsoft: Visual C++ FAQ - Tek-Tips the way to do it in 2D, and now i'm trying to expand it to 3D but i don't understand how is the operator working,... (0 Replies)
Discussion started by: carl.alv
0 Replies

5. Shell Programming and Scripting

multidimensional array in awk

Hi, I was trying to process a file with the help of awk. I want to first display all the rows that contains 01 and at the end of processing I have to print some portion of all the lines. like below. Output expected: (2 Replies)
Discussion started by: ahmedwaseem2000
2 Replies

6. Programming

Sorting a multidimensional vector by a specific field.

In some cases I would like to sort by index, in some cases by color and in some cases by Callsign. Can this be done? :D vector< vector<string> > table; vector<string> row; row.push_back("1");row.push_back("green");row.push_back("alpha"); table.push_back(row);... (0 Replies)
Discussion started by: sepoto
0 Replies

7. Shell Programming and Scripting

gawk - How to loop through multidimensional array?

I have an awk script that I am writing and I needed to make use of a multidimensional array to hold some data... Which is all fine but I need to loop through that array now and I have no idea how to do that. for a regular array, the following works: ARRAY for(var in ARRAY) { ... } ... (5 Replies)
Discussion started by: trey85stang
5 Replies

8. Shell Programming and Scripting

How to deal with multidimensional array in awk?

Hi all! I would like to know how to print $0 when using multidimensional array like below time being I am using for loop to print columns like this awk 'FNR==1{i++} {for(k=1;k<=NF;k++)A=$k} END{for(j=1;j<=25;j++) print A,A,A,A,A,A,A,A,A,A,A,A,A,A}' file1 file2 so here my problem is I... (5 Replies)
Discussion started by: Akshay Hegde
5 Replies

9. Shell Programming and Scripting

Multidimensional array

I am learning about bash system variables, such as $ , @ and #. I have this piece of script implementing an array and it is doing its job just fine. This is not the only array I will be using. Just for ease of maintenance and more coding I would like to have the arrays in two dimensional... (4 Replies)
Discussion started by: annacreek
4 Replies

10. Shell Programming and Scripting

Sort multidimensional Array

Hello I have a problem. I create a Multidimensional Array Like this: ENTRY="$kunnum-$host" ENTRY="$host" ENTRY="# $3" for key in "${!ENTRY}"; do ENTRIES=${ENTRY} # INDEX=IP(5) donedeclare -p declare -A ENTRIES=(="unas15533" ="unas" ="# RDP-Terminal 2"... (12 Replies)
Discussion started by: Marti95
12 Replies
LOCALTIME(P)						     POSIX Programmer's Manual						      LOCALTIME(P)

NAME
localtime, localtime_r - convert a time value to a broken-down local time SYNOPSIS
#include <time.h> struct tm *localtime(const time_t *timer); struct tm *localtime_r(const time_t *restrict timer, struct tm *restrict result); DESCRIPTION
For localtime(): The functionality described on this reference page is aligned with the ISO C standard. Any conflict between the require- ments described here and the ISO C standard is unintentional. This volume of IEEE Std 1003.1-2001 defers to the ISO C standard. The localtime() function shall convert the time in seconds since the Epoch pointed to by timer into a broken-down time, expressed as a local time. The function corrects for the timezone and any seasonal time adjustments. Local timezone information is used as though localtime() calls tzset(). The relationship between a time in seconds since the Epoch used as an argument to localtime() and the tm structure (defined in the <time.h> header) is that the result shall be as specified in the expression given in the definition of seconds since the Epoch (see the Base Defini- tions volume of IEEE Std 1003.1-2001, Section 4.14, Seconds Since the Epoch) corrected for timezone and any seasonal time adjustments, where the names in the structure and in the expression correspond. The same relationship shall apply for localtime_r(). The localtime() function need not be reentrant. A function that is not required to be reentrant is not required to be thread-safe. The asctime(), ctime(), gmtime(), and localtime() functions shall return values in one of two static objects: a broken-down time structure and an array of type char. Execution of any of the functions may overwrite the information returned in either of these objects by any of the other functions. The localtime_r() function shall convert the time in seconds since the Epoch pointed to by timer into a broken-down time stored in the structure to which result points. The localtime_r() function shall also return a pointer to that same structure. Unlike localtime(), the reentrant version is not required to set tzname. RETURN VALUE
Upon successful completion, the localtime() function shall return a pointer to the broken-down time structure. If an error is detected, localtime() shall return a null pointer and set errno to indicate the error. Upon successful completion, localtime_r() shall return a pointer to the structure pointed to by the argument result. ERRORS
The localtime() function shall fail if: EOVERFLOW The result cannot be represented. The following sections are informative. EXAMPLES
Getting the Local Date and Time The following example uses the time() function to calculate the time elapsed, in seconds, since January 1, 1970 0:00 UTC (the Epoch), localtime() to convert that value to a broken-down time, and asctime() to convert the broken-down time values into a printable string. #include <stdio.h> #include <time.h> int main(void) { time_t result; result = time(NULL); printf("%s%ju secs since the Epoch ", asctime(localtime(&result)), (uintmax_t)result); return(0); } This example writes the current time to stdout in a form like this: Wed Jun 26 10:32:15 1996 835810335 secs since the Epoch Getting the Modification Time for a File The following example gets the modification time for a file. The localtime() function converts the time_t value of the last modification date, obtained by a previous call to stat(), into a tm structure that contains the year, month, day, and so on. #include <time.h> ... struct stat statbuf; ... tm = localtime(&statbuf.st_mtime); ... Timing an Event The following example gets the current time, converts it to a string using localtime() and asctime(), and prints it to standard output using fputs(). It then prints the number of minutes to an event being timed. #include <time.h> #include <stdio.h> ... time_t now; int minutes_to_event; ... time(&now); printf("The time is "); fputs(asctime(localtime(&now)), stdout); printf("There are still %d minutes to the event. ", minutes_to_event); ... APPLICATION USAGE
The localtime_r() function is thread-safe and returns values in a user-supplied buffer instead of possibly using a static data area that may be overwritten by each call. RATIONALE
None. FUTURE DIRECTIONS
None. SEE ALSO
asctime() , clock() , ctime() , difftime() , getdate() , gmtime() , mktime() , strftime() , strptime() , time() , utime() , the Base Defi- nitions volume of IEEE Std 1003.1-2001, <time.h> COPYRIGHT
Portions of this text are reprinted and reproduced in electronic form from IEEE Std 1003.1, 2003 Edition, Standard for Information Technol- ogy -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between this version and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html . IEEE
/The Open Group 2003 LOCALTIME(P)
All times are GMT -4. The time now is 03:50 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy