diff options
author | wei <> | 2006-07-16 06:25:57 +0000 |
---|---|---|
committer | wei <> | 2006-07-16 06:25:57 +0000 |
commit | 567ab5d2b3545baf1fa536f23ea4f5ef6fe71d68 (patch) | |
tree | 88e4ca1fe0f06898a76bc9826a10744c4f789e77 /demos/sqlmap/protected/App_Data/person.xml | |
parent | c7d41e5bea4a5f96979a08da9cc9f79355edfe70 (diff) |
Rename APP_CODE directory name.
Diffstat (limited to 'demos/sqlmap/protected/App_Data/person.xml')
-rw-r--r-- | demos/sqlmap/protected/App_Data/person.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/demos/sqlmap/protected/App_Data/person.xml b/demos/sqlmap/protected/App_Data/person.xml new file mode 100644 index 00000000..4ffe44d9 --- /dev/null +++ b/demos/sqlmap/protected/App_Data/person.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8" ?>
+<sqlMap>
+
+ <select id="SelectAll" resultClass="Person">
+ SELECT
+ per_id as ID,
+ per_first_name as FirstName,
+ per_last_name as LastName,
+ per_birth_date as BirthDate,
+ per_weight_kg as WeightInKilograms,
+ per_height_m as HeightInMeters
+ FROM
+ person
+ </select>
+
+</sqlMap>
\ No newline at end of file |