function/procedure error!

2008-03-06 Thread puntapari
Hi everybody! I have a little problem with one function. What i want is to make a function which returns me numbers from 0 to the number that receives the function. Example: if the function receives the number 4, it will return 0,1,2,3 and 4. numbers 0 1 2

Re: function/procedure error!

2008-03-06 Thread puntapari
Hi! And returning a list of numbers? It can be and how? Thanks -- View this message in context: http://www.nabble.com/function-procedure-error%21-tp15875760p15876992.html Sent from the MySQL - General mailing list archive at Nabble.com. -- MySQL General Mailing List For list archives:

Re: function/procedure error!

2008-03-06 Thread puntapari
Somethin like this? DELIMITER $$ DROP PROCEDURE IF EXISTS `cantidad` $$ CREATE PROCEDURE `cantidad` (in n int ) for i in 0..n loop insert into temp values(i); end loop; select * from temp; END $$ DELIMITER ; Thanks -- View this message in context:

RE: IMAGES/PICTURES-MYSQL

2007-11-24 Thread puntapari
Hi! I have seen in this page http://www.blobstreaming.org/ but i think that it´s quite difficult. I want to put only the url of the image, and as you said the pictures o images might be in the server folder, but what is the folder? Thanks. -- View this message in context:

RE: IMAGES/PICTURES-MYSQL

2007-11-22 Thread puntapari
Hello! I have tried the instructions that you explain to me. I have read also some issues but doens´t work. So i have done: ui:tableColumn binding=#{STOCKSOC.tableColumn6} headerText=image id=tableColumn6 sort=producto.image ui:imageHyperlink

IMAGES/PICTURES-MYSQL

2007-11-20 Thread puntapari
Hello to everybody! I have read some messages about this topic but i haven´t resolved my problem yet. I am using mySQL Query Browser to make de schema. And i have a table (product) where there are some attributes (producto, precio, nUds,tipo)(spanish). All are relationated with one product (ex:

Re: IMAGES/PICTURES-MYSQL

2007-11-20 Thread puntapari
Hello! I have read that. But i have not idea what i have to do. Because i´m amateur in this topic. Thank you -- View this message in context: http://www.nabble.com/IMAGES-PICTURES-MYSQL-tf4845682.html#a13865352 Sent from the MySQL - General mailing list archive at Nabble.com. -- MySQL