Re: [sqlite] C++ - ISERT from a data object

2012-06-25 Thread Keith Medcalf
> >> are not very useful in a real life C++ GUI application. > > That thing you quoted above ... the thing between the double quotes ... is > a string. You can make up the string yourself by concatenating several > strings together. > I may be a bit oversensitive here, but that seems like an

Re: [sqlite] C++ - ISERT from a data object

2012-06-25 Thread Arbol One
My friend, heavens awaits you. Outstanding! Thanks man! -Original Message- From: sqlite-users-boun...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of Igor Tandetnik Sent: Monday, June 25, 2012 7:32 PM To: sqlite-users@sqlite.org Subject: Re: [sqlite] C++ - ISERT from

Re: [sqlite] C++ - ISERT from a data object

2012-06-25 Thread Igor Tandetnik
Arbol One wrote: > In my GUI application the user enters a information that will go in a SQLite > database table, so statements like: > > string dbdata = "INSERT INTO friend (name, address, age) VALUES ('Caramba', > '490 New Bridge', '49')"; > > > > are not very useful in

Re: [sqlite] C++ - ISERT from a data object

2012-06-25 Thread Robert Myers
On 6/25/2012 5:58 PM, Simon Slavin wrote: On 25 Jun 2012, at 11:36pm, Arbol One wrote: In my GUI application the user enters a information that will go in a SQLite database table, so statements like: string dbdata = "INSERT INTO friend (name, address, age) VALUES

Re: [sqlite] C++ - ISERT from a data object

2012-06-25 Thread Simon Slavin
On 25 Jun 2012, at 11:36pm, Arbol One wrote: > In my GUI application the user enters a information that will go in a SQLite > database table, so statements like: > > string dbdata = "INSERT INTO friend (name, address, age) VALUES ('Caramba', > '490 New Bridge', '49')"; > >

[sqlite] C++ - ISERT from a data object

2012-06-25 Thread Arbol One
In my GUI application the user enters a information that will go in a SQLite database table, so statements like: string dbdata = "INSERT INTO friend (name, address, age) VALUES ('Caramba', '490 New Bridge', '49')"; are not very useful in a real life C++ GUI application. I would assume that