Hello!
To see the file structure, click on "tree".
Note that updates take place every 10 minutes, commits may not be seen immediately.
projects
/
old-jaiswallab-svn
/
.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
09c8580
)
Added the create procedure statement for import_annotated_term
author
lingutln
<lingutln@localhost>
Thu, 30 May 2013 18:39:04 +0000
(18:39 +0000)
committer
lingutln
<lingutln@localhost>
Thu, 30 May 2013 18:39:04 +0000
(18:39 +0000)
svn path=/; revision=482
image_annotation_db/ia_upload/stored_procedures.sql
patch
|
blob
|
history
diff --git
a/image_annotation_db/ia_upload/stored_procedures.sql
b/image_annotation_db/ia_upload/stored_procedures.sql
index fabafee7773c12ac248520b1d4074916a5ad8b2e..ac823ba5bdd20f07faf6796cd3828c65abf6b36b 100644
(file)
--- a/
image_annotation_db/ia_upload/stored_procedures.sql
+++ b/
image_annotation_db/ia_upload/stored_procedures.sql
@@
-53,7
+53,7
@@
end //
DROP procedure if exists import_annotated_term;
delimiter //
-delimiter
+create procedure import_annotated_term (keyword varchar(80), ontology_term_id varchar(80))
begin
insert into annotated_term (keyword, ontology_term_id) values (keyword, ontology_term_id);
select last_insert_id();