mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-23 00:07:59 +02:00
Remove trailing whitespace (#3668)
This commit is contained in:
@@ -10,6 +10,6 @@ objects = Tuple
|
||||
|
||||
target = Tuple
|
||||
target_version = 1
|
||||
target_libs = PocoDataSQLite PocoData PocoFoundation
|
||||
target_libs = PocoDataSQLite PocoData PocoFoundation
|
||||
|
||||
include $(POCO_BASE)/build/rules/exec
|
||||
|
@@ -36,19 +36,19 @@ int main(int argc, char** argv)
|
||||
|
||||
// drop sample table, if it exists
|
||||
session << "DROP TABLE IF EXISTS Person", now;
|
||||
|
||||
|
||||
// (re)create table
|
||||
session << "CREATE TABLE Person (Name VARCHAR(30), Address VARCHAR, Age INTEGER(3))", now;
|
||||
|
||||
|
||||
// insert some rows
|
||||
People people;
|
||||
people.push_back(Person("Bart Simpson", "Springfield", 12));
|
||||
people.push_back(Person("Lisa Simpson", "Springfield", 10));
|
||||
|
||||
|
||||
Statement insert(session);
|
||||
insert << "INSERT INTO Person VALUES(:name, :address, :age)",
|
||||
use(people), now;
|
||||
|
||||
|
||||
people.clear();
|
||||
|
||||
// a simple query
|
||||
@@ -56,11 +56,11 @@ int main(int argc, char** argv)
|
||||
select << "SELECT Name, Address, Age FROM Person",
|
||||
into(people),
|
||||
now;
|
||||
|
||||
|
||||
for (People::const_iterator it = people.begin(); it != people.end(); ++it)
|
||||
{
|
||||
std::cout << "Name: " << it->get<0>() <<
|
||||
", Address: " << it->get<1>() <<
|
||||
std::cout << "Name: " << it->get<0>() <<
|
||||
", Address: " << it->get<1>() <<
|
||||
", Age: " << it->get<2>() <<std::endl;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user