Questions tagged [amazon-simpledb]

Highly available schema-less attribute database that is part of the Amazon Web Services offering. Enables storage and retrieval of named items consisting of one or more key/value string pairs organized into domains. Item retrieval is done either by item name gets or through a sql-like language. Pay for what you use model with no minimum fees or startup costs.

Amazon SimpleDB is a highly available schema-less attribute database that is part of the Amazon Web Services offering. Enables storage and retrieval of named items consisting of one or more key/value string pairs organized into domains. Item retrieval is done either by item name gets or through a sql-like language. Pay for what you use model with no minimum fees or startup costs.

References

390 questions
0
votes
2 answers

SimpleDB - how long after insert until item is available to be read?

I have a Fragment, and once the user presses OK, an Item is added to my database and its ID is added to the ArrayAdapter. Immediately after, the adapter tries to draw the view, but the first time it tries to get its attributes, it returns a null…
0
votes
1 answer

SimpleDB - subqueries or nested select statements?

I tried to implement the following query in Amazon SimpleDB and got InvalidQueryExpression, AWS Error Message: The specified query expression syntax is not valid. SelectRequest selectRequest = new SelectRequest("select itemName() from Quotes…
0
votes
0 answers

SimpleDB: how store items in an xml file?

I need to retrieve all items in the SimpleDB domain from java application. So, I used the select method, but I don't know is there an easy way to store the retrieved values in an xml file?? or I've to create the attributes and elements by myself and…
ebt_dev
  • 149
  • 1
  • 3
  • 12
0
votes
1 answer

How to access US-East-1 Region DB in Amazon SimpleDB

I have Create an Application in MVC which is currently using AWS Data Server.For it I am using Amazon Simple DB API . My Database Created by the client is allocated at US-EAST-1 but by the code it's accessing the Database US-WEST-2. If I am Creating…
coolhimanshu
  • 647
  • 2
  • 13
  • 26
0
votes
1 answer

SimpleDb - Can i make a SELECT IN statement

Can I make a simple "select in" statement using simpleDb Ex: SELECT * FROM Domain WHERE id in (1,2,3) thanks.
Jean Toledo
  • 71
  • 1
  • 7
0
votes
1 answer

How to get the data of last five days from amazon simple db in iphone application

I want to get the data from table last 5 days records I have seen examples they work fine for other data base but i am using amazon simple db so and sql razor I am using same query but it does not work and shows error SELECT * FROM…
user3110080
  • 57
  • 1
  • 8
0
votes
1 answer

ORDERY clause not working in simple db amazon in iphone application

I am using ORDER BY clause to fetch data but it does not work in simple db amazon web service data base.if i do not use the order by clause in query then it works fine other wise it crashed the app. below is the code. select = [[NSString alloc]…
Aijaz Ali
  • 353
  • 2
  • 6
  • 17
0
votes
1 answer

how to add record in amazon simple db in domain in iphone application

I am making an iPhone application in which I am using Amazon SimpleDB which has domain Category in which I want to add record from the iPhone app. Any idea or help how to add the data from iPhone app. In tutorials they show how to add using RazorSQL…
Aijaz Ali
  • 353
  • 2
  • 6
  • 17
0
votes
1 answer

SimpleDB setup java.rmi.NotBoundException:simpledb

I want to install SimpleDB to my computer.I have already defined the CLASSPATH environment variable as .;C:\SimpleDB in user variables and the system variables CLASSPATH as C:\Program Files\Java\jdk1.7.0_45\bin;C:\Program…
user3046703
  • 23
  • 1
  • 1
  • 8
0
votes
2 answers

Pull data from SimpleDB to iOS

I am trying to familiarize myself with both SimpleDB and iOS. I have a situation where I have created a database with simpleDB and I would like to pull the items into iOS and populate. How would I do about doing this?
0
votes
2 answers

SimpleDB: Select Rows With One Of Top 5 Most Common Values

I'm using the Amazon Web Services API to interact with a SimpleDB domain. The relevant code is selectExpression = "SELECT * FROM myDomain"; selectRequestAction = new SelectRequest().WithSelectExpression(selectExpression) …
Mishap
  • 233
  • 4
  • 13
0
votes
1 answer

AWS SimpleDB sync with Google Calendar

Good Day, I have an app running that currently syncs it's information with AWS SimpleDB. Unfortunately, the person we are developing for has another database that is updated from the web that uses Google Calendar. I need a way to actually sync…
raaj
  • 2,869
  • 4
  • 38
  • 58
0
votes
2 answers

iOS SimpleDB Select by date

Good Day, I am trying to select an item on SimpleDB using the iOS SDK. The issue is the only way I know how to do it is to use SimpleDBGetAttributesRequest to get the item name, then check the date attribute and see if it matches the one i…
raaj
  • 2,869
  • 4
  • 38
  • 58
0
votes
1 answer

php - simpledb - can't get consistent read to work

I'm using AWS SimpleDB for my site, however if I udpate an attribute with something completely different, searching that property with either the new value or the old value are both returning the same record. Let's say the 'login' property's current…
Joe
  • 1,762
  • 9
  • 43
  • 60
0
votes
1 answer

Hadoop Custom Input Format that doesn't use files

I'm just getting started on Hadoop and I'm struggling to figure out how to use other input sources that aren't files, i.e. Read all the rows from AWS SimpleDB, or all records from a REST API on another system. Everything online only shows how to…
dgildeh
  • 175
  • 9