store

Jquery / JS: Store dynamic image in a variable and then show in another page.

Hi to all, i would like make a simple script that store one dynamic image (Random) in a variable and then show that in another page (Like before). This is the source code that show the image in the 1st page (Where i need to store): <img alt="CaptchaA" style="display:block;" src="image_gen.php?rnd=8900yh0484" id="captchaB" name="captch...

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 doing that? Should I open a filehandle with bzip etc. then store using fd_nstore? ...

Question concerning the new apple app-store-guidelines & OpenFlow

In apples new release of the app-store-guidelines they state in 9.2. App user interfaces that mimic any iPod interface will be rejected 10.2. Apps that look similar to apps bundled on the iPhone, including the App Store, iTunes Store, and iBookstore, will be rejected does that mean, that Coverflow is prohibited even if I use OpenFlow ...

AIR 2 - Data Persistence?

what is the best way to include data persistence in an AIR 2 application? is it creating your own read/write file with flash.filesystem, or is there a new way with AIR 2? ...

Saving bitmap to SD card with out compressing it in android

Hi friends I am using android inbuilt camera to take picture and then attaching the same picture to email, when i am testing this functionality in 1.6 device, i am able name the picture that to be taken by in built camera, but in 2.1, the picture is having a name i.e given by device, How to give user defined name in 2.1 inbuilt camer...

what is the concept of store in OpenID

Hi so this is what I understand how Openid works:- the user enters his openid url on the site say"hii.com" The app does a redirect to the openid provider and either does the login or denies it and sends the response back to the site i.e"hii.com" If authentication was succesful then the response object provided by the openid provider ca...

fetch pages [LWP] parse them [HTML::TokeParser] and store results [DBI]

Hello good evening dear stackoverflow-friends, A triple job: i have to do a job with tree task. we have three tasks: Fetch pages Parse HTML Store data... And yes - this is a true Perl-job! i have to do a parser-job on all 6000 sub-pages of a site in suisse. (a governmental site - which has very good servers ). see http://www.e...

the extjs component refresh problem

Hi: I have serveral extjs components in my page, the chart, gird ,formPanel and ect, and now I meet some problems about the refresh of them, take the gridPanle for exmaple: This is the grid codes: var myStore=new Ext.data.JsonStore({ autoLoad:true, fields:['name','age'.....] }); var grid = new Ext.grid.GridPanel({ stroe:myStore...

image pixel values storage in XML using Matlab

Hi ppl. I'm currently working on storing pixels in XML format using Matlab. The problem is that I have no idea about data storage under XML. Can any expert please give me some guidelines? Any relevant materials are welcome and appreciated. Thanks!! ...

Hi, Could anybody recommend me KeyValue Store supporting C#?

Hi, I am looking up keyvalue stores that support C#, but i found that most of them are implemented by Java. Could anybody recommend some to me? It would be super if it is very light-weight, i.e., appearing as a library. thanks!! ...

Create a sort of "Ext.data.StoreView" from multiple Ext.data.Store objects

Here is what I would like to achieve: have an Ext.grid.GridPanel show data from multiple stores. Put in "DB terms", basically showing what would be a "view" of the content of more than one store. The benefit of this approach, as opposed to using cell-renderers, is that all columns would be sortable and searchable. For this to work an o...

EXTJS XMLReader not loading data from asp.NET web page call

I have a grid panel having a datastore to load data. The Datastore has a asp.net webpagewith base params as the URL. Based on the querystring and baseparam values I am generating a XML string and returning the data as XMLStrilng by response.write. But my XMLReader is not loading the data. If I save the same string as XML file and load t...

How to store data that remains after uninstall

I want to store some data that should remain also after application uninstall and to be accessible by a new version of this application. Share preferences/files are not a solution as they are removed when program is uninstalled, also writing to internal memory is not a solution (also removed with uninstall). Writing to external public fo...

ExtJS: how can we get the size of the store in a grid

Hi, I am trying to get the size of the store I am using in the grid. But I am not able to find any method to get the size of the store(number of records in the grid). Could anyone plz help, how can I achieve this. Thanks, Neha ...

get records from json store extjs

i have a json store loaded , i need to grab one record from it i used ; getAt(index) , find() , getById() , but no results this is my code : var appSettingReader = new Ext.data.JsonReader({ root: 'results', },[ {name: 'id', type: 'int', mapping: 'id'}, {name: 'projetId'...

Using APC to store data in arrays

Hello, I'm currently attempting to implement APC caching as a datastore in my web application. Currently, the system retrieves data directly from the MySQL database, and requires a database call per request. I'm currently attempting to change this by prepopulating the cache with data which is intercepted and served from the cache at e...

APC not storing data from MySQLi result array

Hello, I'm havin trouble storing an array of data. Below is the code use in the web application to check to see if the data is there, and if it's there serve it, else, cache it then serve it. I am using MySQLi $id = $db->real_escape_string($_GET['id']); $key = 'content_' . $app; $data = apc_fetch($key); if (!is_array($data)) { $r...