ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/trunk/examples/scriptengine/tests/ParameterisedQueries.sql
Revision: 37
Committed: Mon Feb 15 14:44:25 2016 UTC (8 years, 1 month ago) by tony
Content type: application/sql
File size: 163 byte(s)
Log Message:
Committing updates for Release R1-4-0

File Contents

# Content
1 /* Demonstrate Parameterised queries in scripts */
2
3 Alter Table COUNTRY
4 add Image Blob;
5
6 Update COUNTRY Set Image = :MyImage Where COUNTRY = 'England';
7 Commit;
8