I'm looking for embedded database engine supporting isolating storage. Currently I'm aware of VistaDB. What else you can recommend?
Requirements are pretty simple:
xcopy deployment
support for isolated storage
preferably free
Note that you don't know exact path to the file when using IS.
...
The Winform application is release with ClickOnce in our Intranet. We store personal preference for the GUI in the Isolated Storage. All works pretty fine :)
The problem is when we have a new version of the application, we publish... all preferences are lost! User need to setup their preference over and over each version.
Is there a wa...
Where would the physical files be?
...
Using this previous question as motivation, I would like to temporarily store images and videos in Isolated Storage. My application (written in WPF/C#) will allow a user to review these temporarily stored items by viewing their contents in a MediaElement. I was hoping to set the MediaElement's Source Property to a video or image's URI st...
The docs for Silverlight's IsolatedStorageFile.GetUserStoreForApplication just say that the isolated storage is specific to the "application", and that each different application will have its own storage independent of all other "applications" (but with one quota for the entire domain).
That's great, but I haven't found anything yet th...
Application1 uses Microsoft Enterprise Library Caching Application Block with IsolatedStorageBackingStore to cache data from database accessed by Internet. The task is to create another Application2 (helper application like "Adobe Flash Player uninstaller") which will be able to clear Application1 cache (this will be one of many Applicat...
I am using the entlib's Caching Application Block with isolated storage.
I want different instances of the same application to use the same backing store. Currently, the second instance of my app reads from the backing store when it starts up, so items that have already been cached are read. However, when either instance cahces a new it...
Hi,
I'm in the need again to manage a temporary folder where parts of our application store documents, e.g. between printing and importing to a dms.
Those files should be deleted on application shutdown and ideally on application start as well, just in case something went wrong.
I just thought of a simple class implementing IDisposabl...
I'm planing on a program to manage saved passwords of internet explorer. I saw many tools which displays the saved passwords, but I didn't find the source code.
Thanks!
...
Is the following the correct way to save an image to isolated storage?
public void imageToStore(Image imageIn)
{
IsolatedStorageFile iso = IsolatedStorageFile.GetUserStoreForApplication();
IsolatedStorageFileStream s = new IsolatedStorageFileStream(imageIn.Name, FileMode.Create, iso);
using (StreamWriter wri...
I'am a bit confused about the use of Isolated Storage on a IIS server.
I understand the goal of Isolated Storage : provides a safe place to store data with no worry about how and where is this place.
Since Isolated Storage have a by-user and by-assembly approach, I'am not to wild about using it on a IIS server where applications have a...
I want to make my Web site users be able to upload small or large files and post to share with other users, the files must be publically available online. I want to use a free online storage service for the job, which one should I use? I dont mind if there are ads.
...
I'm working on an enterprise application re-write using Silverlight. The project is still in its early stages of development, but there is a heavy initial data load on the application start as it pulls several sets of business objects from the server. Some of these data sets are infrequently changed once they're set up by the user; like ...
for some reason everytime i restart the (in browser) silverlight application, isolated storage has no keys in it.
i have even tried this with a vanilla template with the code below.
things i have checked:
always using the same port
on startup the application always created the entry in isolated storage (never persisted)
on shutdown, t...
I want to take a file that stored already in the isolated storage, and copy it out, somewhere on the disk.
IsolatedStorageFile.CopyFile("storedFile.txt","c:\temp")
That doesn't work. Throws IsolatedStorageException and says "Operation not permitted"
...