The data-retrieval tag has no wiki summary.
0
votes
1answer
44 views
Retrieve data from database in CakePHP
I have a database with two tables: users and mails.
In my MailsController.php controller I have a function history():
public function history() {
$mails = $this->Mail->find('id');
...
0
votes
2answers
57 views
Best practice for retrieving data? SQL Database vs HTML parsing
I'm developing an app that displays a list of products that are in stock from various electronics websites. I have two methods in mind for accomplishing this task.
Create a C# application that ...
0
votes
1answer
110 views
Restore Data in FragmentActivity after back button Pressed
I've read a lot of things about restoring data in FragmentActivity but nothing works in my case. I tried a lot of methods to do it but it never worked.
I have a FragmentActivity containing a ...
0
votes
0answers
44 views
C# NHibernate Connected but not returning data and no error
I have a C# Windows App running on my local box that is connected to an intranet. I am using nHibernate as the ORM. We use the same nHibernate ORM settings on our web site. The web site performs ...
0
votes
1answer
77 views
retrieving from database rawquery android not working
I am having 2 values, imsi and phone num. I store them in database.i get problem in retriving database in getSIMContacts functn.addContact adds phonenum to database. getSIMContacts retrieves phonenum ...
0
votes
0answers
14 views
Retrive different variables from DB and put in one table
In my DB one or more of the table can uploaded by retriving data from other tables of the same DB
For example: I have a table called NAME that contains 3 fields: "A", "B", "C"
if I want retrieve the ...
-2
votes
2answers
161 views
display data from tables php [closed]
Ok, so for my final year project for University I am creating a E-Attendance System. I am stuck on retrieving data from multiple tables in MySQL and displaying the correct data for an individual. Let ...
0
votes
1answer
33 views
How do I iterate over all documents in a collection sorted by an integer field using pymongo?
How do i iterate over all the documents in a collection sorted by my unique id (uid) field to retrieve the `"eng" field?
My document structure looks like this:
{ "_id" : ...
-1
votes
1answer
60 views
in android: retrieve data from dynamically added fields in form
I am trying to develop a user input form where i take his details and store them
in the form i have fields for his name, email, address, phone number etc.
a person may have multiple emails or multiple ...
-2
votes
2answers
212 views
PHP OOP retrieve data from database, initializing it and echo-ing it [closed]
Hi all I need your advice on whether the following way of coding is acceptable and what better way to code in terms of 3 things, retrieving data, initializing variables and echoing it.
class Product ...
-1
votes
1answer
47 views
Can't retrieve data from XML in php
<?xml version="1.0" encoding="windows-1252" standalone="no"?>
<Xmd_toc REPOSITORY_FORMAT="1.0" PRXML_VER="2.0" PUBLICATION="HeadLine" PUBLICATION_DESCRIPTION="" ISSUE_DATE="15/12/2012" ...
0
votes
1answer
78 views
Retrieving text from a combobox that has been bound to a database table
I have created a jCombobox that is bound to a database table. I have modified the renderer code to display the field properly, in this case a persons surname. However when I try and retrieve the ...
1
vote
1answer
45 views
How to fetch data with if function from 1 table to another table
table_Pricing
ProductType = Lookup from table ProductCatalog.ProductDutyType (dropdown combo)
Duty= ?
table_ProductCatalog
Columns-
ProductDutyType- Custom
Pens- 15
Bags- ...
0
votes
2answers
76 views
How to retrieve instance attribute names for which the value is true?
I am using Ruby on Rails 3.2.9 and Ruby 1.9.3. I have an array of symbols and a model class (ActiveModel) having those symbols (more others) as boolean attributes. Given a class instance I would like ...
0
votes
1answer
102 views
Cakephp data retrieval from multiple tables in a single query
I have the following mysql tables:
CREATE TABLE Articles (
ArticleID SMALLINT NOT NULL PRIMARY KEY,
ArticleTitle VARCHAR(60) NOT NULL,
Copyright YEAR NOT NULL
)
ENGINE=INNODB;
INSERT INTO ...
0
votes
1answer
208 views
How to Retreive .dotx and .csv files from Resources Folder in C#?
I have an application that uses a template file and a CSV file. It works perfectly fine since I do have the said files on my computer and I am referencing their paths. The only thing I want to do is ...
0
votes
0answers
463 views
Retrieve data from a DB with a Servlet [closed]
In a DB I have 3 tables.
Tab1: codM (it is the key) and nameM
Tab2: codC (it is the key), codM (from Tab1) and nameC
Tab3: codP (it is the key), codC (from Tab2) and nameP
In a jsp page, I would ...
0
votes
1answer
123 views
How to retrieve all the entries with hash key as a particular pattern in dynamo DB?
I am new to amazon web services. I want to retrieve all the entries in the dynamo DB table which have a particular word in their hash key. It is similar to using like operator in oracle DB. How can I ...
-4
votes
1answer
272 views
Read data from sqlite [closed]
My app need to search a data from sqlite. Like the date in field DATESTARt, then compare it to the current date then it will alert if the date is equals to the current date.
Help me please.
2
votes
2answers
162 views
Read tuple key and value
How can I read a tuple key and value in Erlang?
I have this variable:
Params = [<<"TPUIBrowser">>,0,18,
...
0
votes
1answer
487 views
Image is not displayed from Oracle table using servlet
After a long trial ,I finally successfully able to upload an image to an oracle database. At least my code says so. However to check whether the image has been successfully I wrote a servlet. After ...
0
votes
1answer
261 views
Android app + Image storage and retrieval
I am designing a restaurant based app which has lots of images.
Please tell me:
How should I save images in the database i.e. in which format so that time of retrieval and display in the app is ...
0
votes
0answers
32 views
Looping through and submitting webforms
I am trying to get some data off a Brazilian government website, which is accessible through a form with some javascript. The website is:
...
0
votes
0answers
74 views
CQL:Contextual/Common Query Language
I would like to know from anyone who uses/knows off CQL (contextual/common query language) if the following would be possible and how I could implement it. I cannot find any real examples or tutorials ...
0
votes
1answer
120 views
SQL Server stored procedure coming up empty
I have a SQL Server stored procedure that is not returning any data when I plug in my parameter...
ALTER PROCEDURE dbo.EncumBugSearch
@year datetime
AS
BEGIN
SET NOCOUNT ON;
select *
From ...
0
votes
3answers
144 views
SQL Calculation for ASP.NET
In my SQL database I have a column that contains a fiscal year value. Fiscal Year start from Oct 1st to Sept 30th of the following year. For example the current fiscal year is 2011-2012 or "2011". I ...
1
vote
2answers
270 views
Is there a way to speed up reading the data?
In the program I created the following logic for reading the data from the database and storing it into List<>:
NpgsqlCommand cmd = new NpgsqlCommand(query, conn);
...
0
votes
1answer
209 views
DB Design and Data Retrieval from a heavy table
I have a requirement to have 612 columns in my database table. The # of columns as per data type are:
BigInt – 150 (PositionCol1, PositionCol2…………PositionCol150)
Int - 5
SmallInt – 5
Date – 150 ...
1
vote
1answer
668 views
How to pass data from sqlite listview to new intent?
(this is my lunch.class which populate the listview from database.tell me if there is any mistakes.im still new to this.)
public class Lunch extends Activity implements OnItemClickListener {
...
0
votes
1answer
611 views
Retrieve data from SQLiteDatabase and display it in a new activity
I can populate my ListView of items from my SQLiteDatabase in lunch.java. now I want to click the one item(total 8 items inside the ListView) and go to a new activity called Display.java and display ...
0
votes
2answers
3k views
ASP.NET - VB.NET - Getting data from MS-Access database where Username =?
I'm using Web Developer 2010, ASP.NET with the VB.NET programming language and a MS-Access database (.mdb).
What I want to do is get all the data from a table called User (i.e. all the columns) where ...
0
votes
1answer
85 views
Retrieving a particular string from a sentence using Regular Expressions
I'm trying to retrieve a particular string with the Regex Expression from a sentence.
This is my initial Regex:
Regex Reg = new Regex(@"^[KB|kb](\w+)[-]?(\w+)$");
From input of :
word word ...
0
votes
0answers
66 views
How to add the coloumn values in the table in the DAO layer from a web service?
My DAO's are set up
AccountDAO
AccountDAo IMpl
My service :
accountService
accountService Impl
My question is how to add the coloumn values and set the value to TO(transfer object) class and ...
1
vote
1answer
179 views
Best way to gather data from a website for an Android application
I'm trying to put together a new app for a project that will display train times for the user.
I know there are a couple of ways to go about this, but before I get started I wanted to get some help ...
-2
votes
2answers
104 views
SQL Server: is there a way to theoretically estimate retrieval time of a query
i will be having a Database with more than 8 hundred billion records,
i am gonna be querying the DB via SQL Server ONLY to retrieve records i.e. SELECT queries only.
i am gonna be retrieving from 1 ...
1
vote
4answers
756 views
Extracting jpegs from a disk dump
I've got a 16GB memory card off someone that won't load properly (asks to be reformatted). I'm trying to get jpegs off it.
I've run dd to dump the contents to a file, which worked splendidly. The ...
2
votes
3answers
1k views
LINQ to SQL Storing query results in a variable
For example I am searching for a specific persons ID and I want to store that ID to a local variable or instance variable. How do I retrieve Query results and stores them in a int Variable with LINQ ...
0
votes
3answers
225 views
Which is better way to manipulate data in DB?
In MySQL there are also functions. For example DAY(), ASCII(), DATEDIFF(), and so on, a lot of function. So it is possible to make complicated queries using these functions. And all ...
1
vote
1answer
812 views
Android - Retrieving a string from a specific element of a gridview
I'm pretty new to Android and I have been playing about with GridView. I've got stuck trying to retrieve Strings from individual elements of the GridView so that I can save state based on the changes ...
0
votes
3answers
161 views
Paradox - know whether there is change in the database without opening a connection
I am writing a application in C# that needs to do the following:
without connecting to the database I need to check if there are some new logs in database. If there are then I am allowed to open the ...
0
votes
1answer
250 views
JPA Parent/Child with Same class, Retrieval issue
I have one issue with retrieval Parent/Child relationship of type "Folder Hierarchy" Ideally, in plain Oracle SQL, it would be easy to use CONNECT BY clause. But with Hibernate, some reason it ends up ...
0
votes
1answer
183 views
Get some data from a SQL Server database without connection to it [closed]
I am writing a application in C# that needs to do the following:
without connecting to the database I need to check if there are some new logs in database
if there are then I am allowed to open the ...
4
votes
1answer
788 views
What information can we access from the client?
I'm trying to compile a list of information that is accessible via javascript such as:
Geo-location
IP address
Browser software
Exit location
Entrance location
I understand that a user can alter ...
0
votes
1answer
249 views
Accessing the value of a dynamically added Control inside Update panel
I have a page which contains an update panel and inside it, we have a placeHolder which will be populated with a textbox when button1 is pressed.
Now I neeed to access the value entered in the ...
0
votes
5answers
92 views
return inserted items for a given interval
How would one design a memory efficient system which accepts Items added into it and allows Items to be retrieved given a time interval (i.e. return Items inserted between time T1 and time T2). There ...
-2
votes
1answer
104 views
What data retrieval method is good if I don't know schema of database?
I am retrieving all tables, and make sql. But I want something that can handle Take, Skip. Differences between databases.
3
votes
2answers
147 views
Python script that notifies me when a update is made to a website.
I need to make a script that will notify me when a change is made to a website. I am not sure about the best way to go about this and I don't know what python has that will be useful. Any push in the ...
0
votes
2answers
107 views
Improving an ':has_many :through' association in order to retrieve data
I am using Ruby on Rails 3.0.10 and I would like to improve some code (keep reading for more information) that retrieves data from the database using an :has_many :through association.
In the model I ...
3
votes
2answers
1k views
PHP Resource ID error
I wan't to retrieve or output data in the database but I kept on getting the error called " Resource ID ".
here is my code
<?php
$host="localhost";
$username="root";
$password ="123192";
...
7
votes
5answers
215 views
What is the point of salt and hashing if database is accessible?
I just learned the concept of hashing ("Hey! don't forget the salt!") and using salt to make the password secured.
Hashing it is a one way encryption (actually not encryption but hashing) so it ...



