vote up 0 vote down star

Hi,

I am writing a function which is called into a page, but I am not sure how to call information form database into the function in order to use them. Basically I am doing some calculation in the function where I need information form database to do them.

Is there anyone who can give a clue on how ot do this? Many thanks F

From a comment...

What I am trying to do is this: I have a page in php which retieves some info from database and all works fine. I am writing a function that needs to make some calculation based on some fields in the database. What I cannot solve is how to get this information form the database into my function. I have tired this: function CalculateCost () { $low_season = $row_rsbooking['cost']; etc. etc. then making some calculations but I am getting nowhere. I am not sure if the function is getting the information form database in order to make calculation.

flag

25% accept rate
3  
Database? Programming language? – OMG Ponies Nov 4 at 20:56

1 Answer

vote up 0 vote down

Hi F,

I am not sure I understand the question. But will try to answer it the best way I can.

If you are looking for help on how to connect to a database and execute a query, then have a look at the following link:

http://msdn.microsoft.com/en-us/library/system.data.dataset.aspx

It describes how you can use the SQL Command object to get data from a SQL Server database in the form of a Dataset. Once this is done, you can get a dataset or datatable to get data to any function in your code for calculations.

You could also use an odbccommand. I would post a link, but I don't have enough reputation points to do more than one! :o)

If the Dataset is too big, you could consider using a datable or a SQLDataReader. Again, please have a look at the MSDN for info on those classes.

I hope this helps!

Rafael Jovel www.augensoftwaregroup.com

link|flag
Thank you Rafael, What I am trying to do is this: I have a page in php which retieves some info from database and all works fine. I am writing a function that needs to make some calculation based on some fields in the database. What I cannot solve is how to get this information form the database into my function. I have tired this: function CalculateCost () { $low_season = $row_rsbooking['cost']; etc. etc. then making some calculations but I am getting nowhere. I am not sure if the function is getting the information form database in order to make calculation. F – francesco Nov 4 at 21:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.