summaryrefslogtreecommitdiff
path: root/demos/sqlmap/protected/App_Data/person.xml
diff options
context:
space:
mode:
Diffstat (limited to 'demos/sqlmap/protected/App_Data/person.xml')
-rw-r--r--demos/sqlmap/protected/App_Data/person.xml16
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