Tagged Questions

1
vote
1answer
22 views

retrieving info from mysql tables

I have such a situation. I have two mysql tables. One "data" table and second table "mirror_data". "data" table consists columns "local" (in this column is stored just a numbers). and this is ...
1
vote
1answer
188 views

How to retrieve SharePoint user data using LINQ?

I am trying to retrieve data from list using LINQ, and have SPMETAl ran for the latest list version. All data from the list is successfully retrieved besides created by, created, modified by, ...
1
vote
3answers
570 views

Retrieving dynamic text from a website in vb.net (VS2008)

Hey guys, i want to be able to retrieve dynamic data from a web page (share prices). I started out by retrieving the html code before i realised that as it is live data, the html code will be of ...
0
votes
4answers
88 views

Java MySQL get last row

So I'm having issues with my program. Basically this far the program is like a MySQL based chat. It stores messages in database and reads them. Im having problems with the reading. What it does right ...
0
votes
3answers
592 views

Retrieve data from website in android app

How can we retrieve data from a website and parse it into a readable format in the Android application.. means i want to extract data from website and use it in my android application.. it could be ...
0
votes
2answers
89 views

UPDATED sorting data from mysql database still need help please

OK, obviously my first explanation of this was not clear...i wasn't exactly sure what to say. To simplify, what do I need to do to use the form below to sucsessfully search in the mysql database I ...
0
votes
0answers
440 views

retrieve mysql data to multiple selectbox menu using php

HI, I send multiple data with multiple selectbox to mysql database! my selectbox is : asp-.net-phyton-php-java after user select send data ti mysql database example : php,.net ( sql ) no i need to ...
0
votes
1answer
78 views

Retrieve value of one column in a table

Here is my problem: I have 2 tables Accounts and Transaction Logs. in Accounts table, it has column "Amount" which is a base amount of an account. and in Trans Logs table, it also has column "Amount" ...
0
votes
1answer
441 views

cakephp retrieving multiple values in a column

I want to retrieve multiples values from a field. the code I am using this this $conditions = array('Tag.name'=>$compare);//$compare = array('value1', 'value2',..); $values = $this->find('all', ...