store

what is best way to store long term data in iphone Core Data or SQLLite?

Hi all, I am working on i-Phone app targeting 3.1.3 and later SDK. I want to know the best way to store user's long term data on i-phone without losing performance, consistency and security. I know, that i can use Core Data, PList and SQL-Lite for storing user specific data in custom formats.But, want to know which one is good to use w...

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 loaded into the RajindaelManaged object's Key at runtime. The question I have is the storage of this SecureString. A user entered password...

Where to store the session object in a Standalone application?

I'm having a session object that does NOT implement the java.lang.Serializable. (its a legacy application, and now I can't go and change the code) Is there any way where I can store the session object some where and later GET BACK THE SAME STATE in a STANDALONE application. One thought is to use RMI. Is there any better way of achievin...

Restoring any type

Hello, are there any ways to restore type of packed into boost::any object? If now, can I store some association map for it? I need something like (pseudocode): map<key, any> someMap; someMap["Key"] = some own object; getType("Key"); ...

iPhone/iPad - Need to offer a free upgrade for Customers who brought an old app

We have an app on the app store that we need to remove. As such we have a new version to upload as a completely new app with a new app SKU and Id but we want to offer a free upgrade for those who have purchased the original version. Is there a way to do this? ...

App store testing an Application with inapp purchase feature.

I have a few questions regarding inApp Purchase as follows: i) Do we need to make a product (in App purchase) live before submission or we can make it after app approval. Suppose I have a product in inApp Purchase that is to be in sale by Next week, and if my app with inApp purchase version gets approved this week, then how do the App...

Step into stored procedure - canceled by user

Hi, I am trying to debug a long stored procedure in Visual Studio 2008. I have followed all the steps on this link: http://www.sqlteam.com/article/debugging-stored-procedures-in-visual-studio-2005 but I still get the same error... 'Canceled by user' and it never hits the breakpoint. Visual Studio 2008 and SQL Server 2005 are runnin...

Do I've to free mysql result after storing it?

Hi, I was wondering whether or not I've to call the $stmt->free_result() for after I've stored it's result with $stmt->store_result()? Could I rather just call $stmt->close() on the end? The reason why I'm asking it is because when I call the $stmt->num_rows I've to call the $stmt->store_result() as said here: http://www.php.net/manual...

Django Db Images video

Hi How can I store Images, Videos and Audio via Django in a Mysql db? I know I can either store the link to the image, video, audio, or the image, video, audio itself. But how does this exactly work. I know about the models and how they create tables via the manage.py. But is there a good tutorial on how to create an image (e.g. jp...

Store IV and Key for Rijndael

I need to store username and password in an app.config. I want to encrypt these values using Rijndael algorithm. Where do I store the key and IV for decrypting the un and pw? I need to deploy the application to different servers with different users. ...

Stored User Names and Passwords

Hi, I'm writing an application which needs to store login data for multiple (XMPP) accounts on Windows. Currently the application stores them in Windows' "Stored User Names and Passwords" using CredRead and CredWrite. And here is the problem: The login name for an XMPP account cannot be changed (it's the account's JID), but Windows onl...

Populating an Extjs graph with json not working

So What Im trying to do is populate an Extjs line graph. Ive created a JSON store that pulls json from a remote page and for some reason my graph is not being populated. Heres my Ext code: Ext.onReady(function(){ var store = new Ext.data.JsonStore({ autoDestroy: true, url: 'http://myURL.com', storeId: 'graphStore', roo...

wordpress store front theme

Hi, I am working for a client so I am not able to provide the most of the details here. so if someone already used this theme http://themeforest.net/item/wpa-storefront-the-ultimate-wpecommerce-theme/full_screen_preview/61891 please let me know how to get the last grid view option to show up via the admin. This is another example that I...

ExtJS combo elements disappear on select

I have a simple combo box with some values in it, populated by a json store. The problem is that when I click the drop down and select a value, all the other values disappear so that I cannot select another value. Heres my code: Ext.onReady(function(){ var dropDownStore = new Ext.data.JsonStore({ autoDestroy: false, fields: ['g...

ExtJS: missing } after property list but I dont see any code errors

load failed -- arguments: [Object api=Object, Object request=Object reader=Object scope=Object, Object tId=0 status=200 statusText=OK, SyntaxError: missing } after property list message=missing } after property list] I got that error by adding an exception to my store but don't see any real error in my code...maybe another set of eyes ...

Save a plot in Matlab as a matrix

Hi! Just imagine you plot several dots, circles, lines in a figure. Afterwards another m file should use this plot as an input to do e.g. thresholding. I'm aware of the print command but I don't want the plot to be stored as file. I would prefer to store it in a matrix (x_dim,y_dim,3). Any ideas? ...

How to create notes in iphone notes app programmatically

I have some data in my local database in my iPhone app. I want to programmatically create a note in iPhones notes app and store this data. Does anyone know how to do it? ...

storing a user selection that stores itself for use on reload in android app

I've built a dialog that asks the user to pick a city from the list provided when the application first opens. The dialog works perfectly, however I want to store the user's choice so that when the app is opened a second time, it checks to see if the user has already made a selection previously. If they have, it doesn't display the dialo...

App is on App Store but does not list in category

We have an app on the store that if searched for by name or company it appears and we can download it, in fact it is getting downloaded, but it does not list in its category? I have checked the iTunes Connect MetaData and it is in the category Education and is free, but if we list all free education apps it does not list. We also looke...

MySQL storing and searching string

Hi all, I’m currently in the process of developing my own blogging system. Currently when you create a new post, you get the option to archive it categories of your own choise. Currently I’m storing the categories as a VARCHAR value in a mysql database. As an example the field will contain 2,4,8 if the user has chosen the categories wi...