473,800 Members | 2,282 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

trying to use vector<char*> as char**

Hello all,

I wrote a simple ODBC wrapper class that used code like this ( not real
code, added types for clarification ):

char** type bufs = new char*[numberOfColumns]

for( int i = 0 ; i < numberOfColumns ; i++ ) {
size = getSizeOfColumn ();
bufs[i] = new char[sizeOfColumn+1];
BindBufferToCol umn( bufs[i] );
}

it worked as above, but when I tried to use a vector<char*> to simplify
the code like:

vector<char*> bufs;

for( int i = 0 ; i < numberOfColumns ; i++ ) {
size = getSizeOfColumn ();
bufs.push_back( new char[sizeOfColumn+1]);
BindBufferToCol umn( bufs[i] );
}

Question is, does vector mess around with pointer addresses? should I
be using vector<char *const>?

I'd appreciate any insight.

Regards,
Marco

Mar 23 '06 #1
8 4324
Marco Costa wrote:
Hello all,

I wrote a simple ODBC wrapper class that used code like this ( not real
code, added types for clarification ):

char** type bufs = new char*[numberOfColumns]

for( int i = 0 ; i < numberOfColumns ; i++ ) {
size = getSizeOfColumn ();
bufs[i] = new char[sizeOfColumn+1];
BindBufferToCol umn( bufs[i] );
}

it worked as above, but when I tried to use a vector<char*> to simplify
the code like:

vector<char*> bufs;

for( int i = 0 ; i < numberOfColumns ; i++ ) {
size = getSizeOfColumn ();
bufs.push_back( new char[sizeOfColumn+1]);
Did you mean:

bufs.push_back( new char[size+1]);

BindBufferToCol umn( bufs[i] );
}

Question is, does vector mess around with pointer addresses?
No, why should it?
should I be using vector<char *const>?


I think you should make it something like:

vector<vector<c har> > bufs(numberOfCo lumns);
for (int i = 0; i < numberOfColumns ; ++i)
{
bufs[i].resize(getSize OfColumn()+1);
}

Btw: Why does getSizeOfColumn return one less than the size of the column?

Mar 23 '06 #2
> Btw: Why does getSizeOfColumn return one less than the size of the column?

Because its the size of the column in the database. When the other
function actually writes the data into the buffer, it includes the '\0'
terminator character so I gotta account for that.

I'm gonna try that out now, thanks for the help. :-)

Mar 23 '06 #3
Rolf Magnus escreveu:
I think you should make it something like:

vector<vector<c har> > bufs(numberOfCo lumns);
for (int i = 0; i < numberOfColumns ; ++i)
{
bufs[i].resize(getSize OfColumn()+1);
}


that seems to work fine.

another thing: is there an easy way to convert std::vector<cha r> to
std::string?

Mar 23 '06 #4
Marco Costa wrote:
Rolf Magnus escreveu:
I think you should make it something like:

vector<vector<c har> > bufs(numberOfCo lumns);
for (int i = 0; i < numberOfColumns ; ++i)
{
bufs[i].resize(getSize OfColumn()+1);
}


that seems to work fine.

another thing: is there an easy way to convert std::vector<cha r> to
std::string?


Something like:

std::vector<cha r> myvec;
//...
std::string s(myvec.begin() , myvec.end());

But why not directly use std::string instead of std::vector<cha r> then?

Mar 23 '06 #5
the thing is, the ODBC function requires me to give it a pointer to a
buffer. so when I fetch the data it writes to the buffer it points to.

like:

char* buf;
buf = new char[size];
SQLBindCol(some Handle,someInde x,someType, buf, size+1, someOtherBuffer
);

when I use the above, it works ok. when I tried:

vector<char> buf;
buf.resize(size );
SQLBindCol(some Handle,someInde x,someType, &buf, size+1, someOtherBuffer
);

It crashed on me. Now to think of it, would &buf[0] work? 8-|
huummmm....

Mar 23 '06 #6
Rolf Magnus wrote:
Marco Costa wrote:
Rolf Magnus escreveu:
I think you should make it something like:

vector<vector<c har> > bufs(numberOfCo lumns);
for (int i = 0; i < numberOfColumns ; ++i)
{
bufs[i].resize(getSize OfColumn()+1);
}

that seems to work fine.

another thing: is there an easy way to convert std::vector<cha r> to
std::string?


Something like:

std::vector<cha r> myvec;
//...
std::string s(myvec.begin() , myvec.end());

But why not directly use std::string instead of std::vector<cha r> then?


There are cases where you need to pass a pointer to a non-const char
array to an API.
Mar 23 '06 #7
Marco Costa wrote:
orks ok. when I tried:

vector<char> buf;
buf.resize(size );
SQLBindCol(some Handle,someInde x,someType, &buf, size+1, someOtherBuffer
);

It crashed on me. Now to think of it, would &buf[0] work? 8-|
huummmm....


&buf[0] is generally recognized as the way to convert a vector to a pointer.

I don't belive there's a direct conversion between vector<T> (or
vector<T>*) and T*.
Mar 23 '06 #8
red floyd wrote:
another thing: is there an easy way to convert std::vector<cha r> to
std::string?


Something like:

std::vector<cha r> myvec;
//...
std::string s(myvec.begin() , myvec.end());

But why not directly use std::string instead of std::vector<cha r> then?


There are cases where you need to pass a pointer to a non-const char
array to an API.


Ah, right. Didn't think of that.

Mar 24 '06 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
1891
by: Steven Reddie | last post by:
I have a large char which I'd like to copy a portion of into a vector<char>. I can't seem to locate a simple method for doing so. I assume involving iterators will not result in memcpy not being used and therefore will be less than optimal. Can anyone help me out? Regards, Steven
3
2807
by: Chris | last post by:
Hi, I'm playing/developing a simple p2p file sharing client for an existing protocol. A 2 second description of the protocol is Message Length = int, 4 bytes Message Code = int, 4 bytes Data
2
4780
by: Chris Thompson | last post by:
Hi I'm writing a p2p client for an existing protocol. I used a std::vector<char> as a buffer for messages read from the server. The message length is the first 4 bytes. The message code the second 4. The total message length is therefore 4 + message length. A number of messages work fine/as expected but there are consistant errors occuring. After a period
6
4137
by: me | last post by:
Hi guys - the question is in the subject line. I thought of one quick way: std::ifstream input("myfile.dat") ; std::istreambuf_iterator beg(input), end ; std::vector DataFile(beg,end) ;
13
4654
by: Richard | last post by:
vector<char*> m_Text; m_Text.resize(1); char* foo = "FOO"; char* bar = "BAR"; char* foobar = (char*)malloc(strlen(foo) + strlen(bar) + 1); if (foobar) { strcpy(foobar, foo); strcat(foobar, bar); }
4
2390
by: Jim Langston | last post by:
I'm using a function like this: char TextBuffer; jGet_DropDown_Selected_Text( cc.ddSex, TextBuffer); Where the function is filling in the text buffer. I don't have access to the actual function to change it to a std::string (it's a library function) so I was thinking, well, I could use a std::vector<charinstead of a char array, but would that actually gain me anything at all? I mean, what's the difference between calling it like the...
6
2769
by: JackC | last post by:
Hi, If i have a vector<charmaybe 15mb in size, whats the most efficient way to write out all the elements to an output file? I have tried this: for(int z = 0; z < Output_Buffer.size(); z++) { write(ostr, (char *) Output_Buffer, 1);
0
9691
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9551
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10505
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10276
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10035
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9090
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7580
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5471
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4149
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.