Sophie

Sophie

distrib > Mandriva > 2007.1 > x86_64 > by-pkgid > 39815cfb0428fd9d1c438b6b3c91a209 > files > 1172

qt3-example-3.3.8-4.2mdv2007.1.x86_64.rpm

This SQL table example requires a connection to a SQL database.
Modify main.cpp to connect to your specific database.  

This example program expects a table called 'simpletable' to exist in
the database.  You can create this table by running the following SQL
script (modify to suit your backend, if necessary):

drop table simpletable;
create table simpletable
(id number primary key,
name varchar(20),
address varchar(20) );

-- optional, some sample data
insert into simpletable (id, name, address)
values (1, 'Trond', 'Oslo');
insert into simpletable (id, name, address)
values (2, 'Dave', 'Oslo');