From: | Carlos Moreno <moreno(at)mochima(dot)com> |
---|---|
To: | pgsql-interfaces(at)postgresql(dot)org |
Subject: | libpq++ and strings. |
Date: | 2001-05-17 01:04:26 |
Message-ID: | 3B03239A.E4685125@mochima.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-interfaces |
I wonder why all the string parameters and return values
are expressed in the form of char * or const char * ?
After some time sticking to C++ and learning to hate
(even more :-)) C strings, I find myself annoyed by
not being able to do this:
if (db.ExecTuplesOk ("select * from products"))
{
for loop ......
if (db.GetValue(row, "discontinued") == "t")
{
cout << "Disconinued";
}
Or something like this:
// Get results from one query and use one field to
// produce another query:
string query = "select * from table where ID='" +
db.GetValue (row, "prodID") + "'";
Don't you just hate it? At least the second one is
not that bad, because the compiler won't let you add
two pointers. But the first one slips through the
compiler, who doesn't have a problem with comparing
two pointers -- it can not even know that the comparison
will be unconditionally false to warn you... :-(
Why not just changing all the parameters and return
values to `const string &' and/or `string' ?
Any thoughts?
Carlos
--
From | Date | Subject | |
---|---|---|---|
Next Message | J. T. Vermeulen | 2001-05-17 12:59:34 | Re: libpq++ and strings. |
Previous Message | Jan Wieck | 2001-05-16 19:50:00 | Re: JDBC and numeric datatype... |