Hello!

To see the file structure, click on "tree".

Note that updates take place every 10 minutes, commits may not be seen immediately.
Added the create procedure statement for import_annotated_term
authorlingutln <lingutln@localhost>
Thu, 30 May 2013 18:39:04 +0000 (18:39 +0000)
committerlingutln <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

index fabafee7773c12ac248520b1d4074916a5ad8b2e..ac823ba5bdd20f07faf6796cd3828c65abf6b36b 100644 (file)
@@ -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();