Tagged Questions
A store is a data repository of a set of integrated objects. These objects are modeled using classes defined in database schemas. Data store includes not only data repositories like databases, it is a more general concept that includes also flat files that can store data.
18
votes
9answers
2k views
Reliable and efficient key--value database for Linux?
I need a fast, reliable and memory-efficient key--value database for Linux. My keys are about 128 bytes, and the maximum value size can be 128K or 256K. The database subsystem shouldn't use more than ...
13
votes
6answers
6k views
Using SQL Server as Image store
Is SQL Server 2008 a good option to use as an image store for an e-commerce website? It would be used to store product images of various sizes and angles. A web server would output those images, ...
9
votes
4answers
428 views
where to store the user credentials in an enterprise application(EAI)?
Background/Context
We are developing a Event Notification Service. The application at a high level looks like below:
Our developene scope involves widget and the ENS.
"ENS" acts as a central point ...
7
votes
1answer
687 views
Mac App Store Binary Rejection Question
I had to change my application's name, it led to a rejection; after changing the name and the respective build settings I submitted the new binary to the Mac App Store with Xcode 4. Xcode uploads it ...
7
votes
3answers
3k views
How to store CLLocation using Core Data (iPhone)?
I'm trying to save a location and retrieve the location on a map afterward using Core Location, MapKit and Core Data frameworks.
What I've done is I just made entity named POI and added properties ...
7
votes
1answer
1k views
How to register a certificate to a port when the cert is in a custom location using netsh
My certificate is stored in a custom store under "Certificates(Local Computer)" instead of under "Personal".
Normally, if the cert is located under personal, i just use C:>netsh http add sslcert ...
6
votes
1answer
198 views
How can I serialize a closure in Perl?
I think this might be best asked using an example:
use strict;
use warnings;
use 5.010;
use Storable qw(nstore retrieve);
local $Storable::Deparse = 1;
local $Storable::Eval = 1;
sub ...
5
votes
2answers
305 views
Find Certificate by hash in Store C#
How to get Certificate by hash in Windows Store using C#?
sha1 example:7a0b021806bffdb826205dac094030f8045d4daa
this loop works but:
X509Store store = new X509Store(StoreName.My);
...
5
votes
1answer
4k views
ExtJS 4: Models with Associations and Stores
Introduction
I'm facing an application design problem with the Ext.data.Model class in ExtJS. I will try to develop my ideas to a very common online store scenario here, so you can follow me. I would ...
5
votes
3answers
445 views
iPhone Lite version - what is allowed?
I'm scratching my head over this.
I have a moderately successful app which has a free "LITE" version in addition to the full one. This is a utility app, not a game with levels, and I'm having trouble ...
5
votes
1answer
2k views
Change app name in apple store of an already released/available iOS app
I released my iOS app in Apple App Store some weeks ago and want to rename my mobile app now (I only want to add a space). I did not found an "edit name" button in iTunes Connect so I tried to find a ...
5
votes
7answers
755 views
Securely store a password in program code?
My application makes use of the RijndaelManaged class to encrypt data. As a part of this encryption, I use a SecureString object loaded with a password which get's get converted to a byte array and ...
5
votes
2answers
1k views
Testing app upgrade on the iPhone
Say I have app version 1.0 released on the app store. Then I want to release version 1.1.
I will keep existing data that was copied out of the app bundle and into the app's sandbox. These are some ...
5
votes
7answers
6k views
Java: Save objects in a textfile? Are there readymade solutions?
I want to save the objects I generated in a program. After restart the App should load automaticly all Objects in an Array. I want to write them in a file and parse them after restart. Are the other ...
4
votes
4answers
122 views
Java - How to store password used in application?
I'm developing an application which read some data from a db.
The connection to the db is performed through standard login/password mechanism.
The problem is: how to store the db password?
If I store ...
4
votes
2answers
3k views
ExtJS4 grid won't update remote database
For some reason, this configuration of an ExtJS4 grid won't update. When you click on a cell, change a value, it hits the create URL, not the update URL, as defined in the proxy and observed with ...
4
votes
3answers
1k views
iPhone/iPad App Code Obfuscation - Is it Possible? Worth it?
I've researched quite a bit, both on SO, as well google-ing all over the place, but I can't seem to find a straight-forward answer in regards to code obfuscation for iPhone/iPad apps written in ...
4
votes
1answer
707 views
Where to store large application data on android devices?
I'm currently facing a problem where I should store my object structure on the android device.
The usecase: I'm starting a call to an applicationserver (with the great help of AsyncTask), get a well ...
4
votes
1answer
10k views
Load default value for a comboBox extjs
how can i load a default value from my json store (remote) into a combobox ,
i've tried load the store before render the combo , and use setValue()
i want my combo to display the first result in the ...
4
votes
2answers
269 views
Selling Software for Windows?
Are there any "App Stores" or Software Marketplaces that allow developers to submit their Windows Software for sale to the general public? Kind of like the Apple app store, but for windows apps? Also, ...
4
votes
6answers
485 views
Best practices for storing production passwords for small groups
This is not a technical question. How do small organizations keep sensitive information that must be shared among several individuals safe, such as root passwords to production servers? Not all people ...
3
votes
3answers
163 views
What protection scheme for my passwords?
I'm developing a software (for personal use) with Delphi.
But I have a problem, this is it :
-> There's a main password to access a some other password file.
-> When storing these password, i use ...
3
votes
1answer
76 views
Only Mysql OR mysql+sqlite OR mysql+own solution
Currently I am building quite big web system and I need strong SQL database solution. I chose Mysql over Postgres because some of tasks needs to be read-only (MyISAM engine) and other are ...
3
votes
4answers
52 views
Store Numbers as Binary in files
I have numbers written as ASCII codes in my file. For example "9" is stored as two bytes 57 i.e. 8 bits in total.
I want to optimize storage by just storing those numbers as binary values for example ...
3
votes
3answers
178 views
Android - Where should we save username and password in device memory?
What is a good practice to save username and password on device?
I have gone through many answers on Stackoverflow and now i am bit confused.
I am working on an email app and i want my user to feel ...
3
votes
1answer
81 views
Grouping an Ext JS 4.0.2a Grid on a Column that Contains a null value
I have a model called 'Students' where one of the fields 'Team' is defined as:
{
name: 'team',
type: 'int',
useNull: true
}
Now I want to group on this field using:
...
3
votes
1answer
388 views
How to tell ExtJS Grid that edited data already synced?
I have few grids on a page. After I edit data in them I press Save button, collect all changes and build Ajax request with changes to server. All works fine, except one thing. After data successfully ...
3
votes
2answers
101 views
More efficient way to store values?
I'm thinking about making a math program. It will ask a random question from a set of questions, and then verify the answer. Here is what I have so far:
String[] questions = {"3 * 19", "21 * 9", "7 * ...
3
votes
1answer
99 views
Current amazon android app store wait times?
Just curious how long its taking Amazon to review and approve your android apps? Is it still 2 weeks or so, or are they faster now?
3
votes
3answers
157 views
Magento multi website controller
Is it possible to programmatically dispatch websites in Magento? Currently, I have a directory in the root of my site called /websites. In this directory I have subdirectories for each website, for ...
3
votes
1answer
134 views
WCF Certificate Store from SQL Server Database
I have a SQL Database which is storing my client side certificate for WCF service and other services. (X509 etc). I would like to use this Store (instead of 'My') to retrive this certificate (instead ...
3
votes
1answer
466 views
How can I change a customer store_id in Magento or set the “created_from” attribute when creating a new customer
I want to be able to choose what store to associate a new customer with when I create their account as administrator. I found that by overriding this file:
...
3
votes
2answers
3k views
ExtJs Store.save()?
How do I handle the save() method of the data store on the back end.(my C# code)?
Do I need any extra config settings for the store to enable the save() method?
If anyone could just point me in the ...
3
votes
6answers
168 views
How to store audio files in server (during hosting)
I was thinking of building an app to serve audio content.
The first question I get is how to store it. Two obvious solutions that occur are:
Dump in database as BLOB
Dump in filesystem, and store ...
3
votes
2answers
446 views
Product name of configurable product not saving in store other than default
This is a bug in Magento 1.4.2.0 (bug also present in 1.5.0.0-rc2). When trying to save a configurable product in a store view other than the default, the "Name" property is not properly saved. The ...
3
votes
2answers
248 views
3
votes
2answers
2k views
Apple App Store: INSTALL_ERROR_DISTRIBUTION_SIGNED_BY_APPLE
Anyone else getting this error when trying to download an app from the new Apple Mac App Store?
INSTALL_ERROR_DISTRIBUTION_SIGNED_BY_APPLE
3
votes
4answers
768 views
Where to Store the Protection Trial Info for Software Protection Purpose
It might be duplicate with other questions, but I swear that I googled a lot and search at StackOverflow.com a lot, and I cannot find the answer to my question:
In a C#.Net application, where to ...
3
votes
2answers
1k views
Extjs. Can't catch write event after store.save() with create action
I'm trying to handle event after creating new record to ExtJS store and saving it to server. But I have a problem - write event firing only after update action. Documentation says:
@event write ...
3
votes
2answers
3k views
Apple In app purchase StoreKit error
I am implementing in app purchase feature for a bookshelf but an error message RANDOMLY appear during purchasing books.
The error message is
"Payment requests are restricted to products returned as ...
3
votes
3answers
141 views
How should I store and compress a Moose object using Perl?
I have created a package using Moose and I would like to nstore some large instances. The resulting binary files are very large (500+MB) so I would like to compress them.
What is the best way for ...
3
votes
2answers
146 views
Apple Itunes app limitations
I have a iphone game that i am creating and wanted to know a couple limitations
once the person downloads the game and they sign in with a user name i want them to be able to download new content ...
3
votes
2answers
313 views
What constitutes a private API in an iPhone app?
I'm fairly new to Objective-C and am confused on what falls under the unbrella of a "private API" that could cause Apple to reject my app. Does this include adding methods to existing classes? For ...
3
votes
3answers
1k views
How sort elements and store them in a variable, XSLT
I was wondering whether it's possible to sort some elements first and store them (already sorted) in a varible. I would need to refer to them thought XSLT that's why I'd like to store them in a ...
3
votes
3answers
1k views
Displaying custom product attributes based on customer group (Magento)
I have wholesale attributes for certain products under one store in Magento. I would like to set it so those particular attributes only appear on the product page IF the customer is logged in and they ...
3
votes
1answer
2k views
Set minimum iPhone OS version for app?
I'm about to publish an app on the app store, and I'm looking to set the minimum OS version as it appears in iTunes as "Requires iPhone OS 3.x or later". 2 questions:
1) Where do I set this in my ...
3
votes
6answers
375 views
Directory or subdomain for online store?
We have a domain and now we need to setup an online store. Which is better for search engines and for people (easy to remember, etc.) - a directory (site.com/shop/) or a subdomain (shop.site.com)?
3
votes
5answers
709 views
SQL Filter Query
I have a table with a number of fields in it. I am trying to create search filter in asp.net so the user can search by one or a combination of fields. So basically I want to create a single stored ...
2
votes
2answers
62 views
How to store , sort and group items (list/set/map) in java?
Given such data
UserID, MovieType , year
1, 2, 2000
1, 3, 2000
1, 2, 2006
2, 3, 2010
2, 4, 2011
2, 3, 2002
1, 2, 2010
What are the best option to store it in java , such that I can sort it ...
2
votes
1answer
80 views
how do I get the value from the drop down list to transfer to cart page
I'm trying to retrieve a value from my dropdown list that is created dynamically from MYSQL using javascript. I'm fairly new to javascript as well, and was wondering if I have this done correctly.
...