The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
8answers
3k views

Binary Data in MySQL

How do I store binary data in MySQL?
18
votes
1answer
793 views

What is the use of private Content Providers?

The Android Dev Guide says Content providers are also useful for reading and writing data that is private to your application and not shared. Generally, Content Providers are used for ...
11
votes
3answers
2k views

Dependency injection and ASP.Net Membership Providers

I am in the process of creating a custom membership provider for an ASP.Net MVC website. The provider is being created as a separate class as part of a bigger library. There is a need for the back-end ...
9
votes
18answers
3k views

Best way to store data locally in .NET (C#)

I'm writing an application that takes user data and stores it locally for use later. The application will be started and stopped fairly often, and I'd like to make it save/load the data on application ...
8
votes
1answer
290 views

IE equivalent for GM_setValue and GM_getValue (Greasemonkey storage)

I have made a script that runs with no glitch on Firefox. I'm retrieving some data from external domain in an iframe to insert them in the page by using setInterval() I have tried to use Trixie, so ...
8
votes
6answers
1k views

javascript library for client side storage with server side sync

I'm looking for a javascript library that will let me store data in a client side database and in the back ground automatically sync the database back to the server's database preferable something ...
8
votes
5answers
1k views

Fast Relational method of storing tree data (for instance threaded comments on articles)

I have a cms which stores comments against articles. These comments can be both threaded and non threaded. Although technically they are the same just with the reply column left blank when it's not ...
7
votes
2answers
797 views

How to best handle the storage of historical data?

I'm trying to determine how I should store historical transactional data. Should I store it in a single table where the record just gets reinserted with a new timestamp each time? Should I break out ...
6
votes
2answers
115 views

What available Python modules are there to save-and-load data?

There are many scattered posts out on StackOverflow, regarding Python modules used to save and load data. I myself am familiar with json and pickle and I have heard of pytables too. There are ...
5
votes
2answers
64 views
+50

Advantage of schemaless data storing over data storing with schema

I want to choose a back end web service for my app. Reading documentation of these services(Parse, Proxomo, Cocoafish, StackMob etc.) reveal that some of them offers to store data in schemaless form ...
5
votes
2answers
228 views

8078 bytes in 8060 B datapage (SQL Server)?

It is written everywhere that data in SQL Server is written in pages of 8K (8192 B) each with 8060 bytes for data and the rest is overhead (system info). Though, the recent article [1] gives code ...
5
votes
6answers
156 views

What are the weaknesses of XML?

Reading StackOverflow and listening the podcasts by Joel Spolsky and Jeff Atwood, I start to believe that many developers hate using XML or at least try to avoid using XML as much as possible for ...
5
votes
6answers
533 views

.NET Data Storage - Database vs single file

I have a C# application that allows one user to enter information about customers and job sites. The information is very basic. Customer: Name, number, address, email, associated job site. Job ...
5
votes
4answers
704 views

Emacs cloud storage options?

What options are there for saving and retrieving documents to and from the cloud, from within Emacs? I use Emacs at work, on a Windows machine, and at home, on a Linux box, so ideally I would want a ...
4
votes
5answers
688 views

Store array of numbers in database field

Context: SQL Server 2008, C# I have an array of integers (0-10 elements). Data doesn't change often, but is retrieved often. I could create a separate table to store the numbers, but for some ...
4
votes
2answers
186 views

What is the best method to store this small read-only data table in an android phone?

I need to store data to use in my android program. Here are the details about the data: There will be one table. Each "row" of data will have a unique INT identifier. Other then that field, there ...
4
votes
4answers
90 views

Compressing digitalized document images

We are now required by law to digitalize all the financial documents in our company and submit them to evaluations every 3 months. Since this is sensitive data we decided to take matters into our own ...
4
votes
3answers
384 views

Data storage advice needed: Best way to store location + time data?

I have a project in mind that will require the majority of queries to be keyed off of lat/long as well as date + time. Initially, I was thinking of a standard RDBMS where lat, long, and the datetime ...
4
votes
6answers
2k views

How does COBOL store and retrieve data?

I'm starting to learn about COBOL. I have some experience writing programs that deal with SQL databases and I guess I'm confused how COBOL stores and retrieves data that is stored in a mainframe for ...
4
votes
4answers
284 views

.NET Windows Store Data

Well if i want to store data for a application machine wide i just use Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData) And if i want to store data per user i use ...
4
votes
3answers
5k views

Where to save high scores in an XNA game?

I'm making a simple 2 player game in XNA and started looking into saving the player's high scores. I want the game to work on the XBox 360 as well as Windows, so I have to use the framework to save ...
3
votes
1answer
311 views

Store JSON in an sqlite field?

I'm writing an application that communicates with a web API, which responds with JSON. Currently, I'm translating the JSON objects to Java objects using gson (which is awesome, by the way). Now, I ...
3
votes
2answers
276 views

Which XML data type should I use for currency/money?

After reading a few questions on what Java data type to use for currency/money, I have decided to use the int/long method, where you store the value of the currency/money as its lowest unit (such as ...
3
votes
1answer
652 views

Pros and Cons of SQLite and Shared Preferences

what is the good mechanism to store information among SQLite database and Shared Preferences ? Why we use shared preference ? Why we use sqlite ? these questions made me confusing ? i tried much to ...
3
votes
7answers
147 views

Database-less Approach to Store Some Data in PHP

I am new to PHP but not programming in general. I want to store some data I retrieve from the web service but I do not think I want a database for that. First, data will be updated quite frequently ...
3
votes
1answer
215 views

What is the maximum size that the Tokyo Cabinet works well?

I read on an article called "Hands-on Cassandra" that Tokyo Cabinet is not good for big data. Why? How many bytes TC needs to store before start to work bad? Is is possible to determine a approximated ...
3
votes
2answers
496 views

How to come to limits of 8060 bytes per row and 8000 per (varchar, nvarchar) value?

Comining from my question [1] where I was explained how to derive 8078 bytes of data per page in MS SQL Server. If to calculate the number of bytes per page used for data (without overhead) ...
3
votes
3answers
355 views

Help with Perl persistent data storage using Data::Dumper

I have been trying to figure this out for way to long tonight. I have googled it to death and none of the examples or my hacks of the examples are getting it done. It seems like this should be pretty ...
3
votes
1answer
160 views

Efficient storage/retrieval method for replayable comet style applications (Google Wave, Etherpad)

I am considering a web application that would have the same kind of multi user, automatic saving, infinite undo / replay capabilities that you see in Google Wave and Etherpad (albeit on a drastically ...
3
votes
3answers
3k views

“BigInt” in C?

What is the easiest way to handle huge numbers in C? I need to store values in the Area 1000^900... Does anybody know of an easy way to do that? Any help would really be appreciated!
2
votes
2answers
59 views

Is Cassandra good for storing files?

I'm developing a php platform that will make huge use of images, documents and any file format that will come in my mind so i was wondering if Cassandra is a good choice for my needs. If not, can you ...
2
votes
1answer
107 views

What is the Storage Requirement for Decimal(2,1)?

It says in MySQL 5.6 manual that: Values for DECIMAL (and NUMERIC) columns are represented using a binary format that packs nine decimal (base 10) digits into four bytes. Storage for the integer ...
2
votes
5answers
133 views

Best way to store small amount of data

I'm new to windows app and I would like to know what the best way to save a small amount of data, like 1 value a day. I'm going for the text file because it's easy, but I know i could use MS Access. ...
2
votes
2answers
86 views

What about the git storage system

Maybe this is stupid question, but I'd like to raise here since it's not clear for me: git commit file content as snapshot relative to svn commit as delta storage systems, does it mean git needs more ...
2
votes
1answer
63 views

I need an alternative for PHP data storage (simular to MySQL and SQLite DB's)

I'm working on a WordPress theme that includes a subscribe form which doesn't work correctly at the moment because i can't figure out where to store the user's info. I cannot use MySQL because of the ...
2
votes
5answers
79 views

Storing Python data on a Linux system

I have the need to create a system to store python data structures on a linux system but have concurrent read and write access to the data from multiple programs/daemons/scripts. My first thought is ...
2
votes
1answer
48 views

I am looking for a key-value datastore which has following (preferable) properties

I am trying to build a distributed task queue, and I am wondering if there is any data store, which has some or all of the following properties. I am looking to have a completely decentralized, ...
2
votes
2answers
589 views

Store images in database as binary data

What's the best way to store an image in a database in binary format, and how can I implement it using C#? Thanks in advance for any help.
2
votes
2answers
319 views

Why does MySQL unix time stop short of the 32 bit unsigned integer limit?

mysql> SELECT FROM_UNIXTIME(2145916799), FROM_UNIXTIME(2145916800), POW(2,32-1)-1, 2145916799 - POW(2,32-1)-1; ...
2
votes
2answers
650 views

Android - Data storage?

I am converting an iphone app to android? 1- Is there anything similar to the "iphones core data" on android sdk? 2- If not, does android support using sqlite databases?
2
votes
5answers
214 views

Is a database the right choice for data storage for my C# application?

I am developing a C# application and want to be sure I choose the best choice for data storage that fits these specs. The program can have a infinite amount of data, but that data will only be used ...
2
votes
1answer
186 views

Using two different Core Data Models in the same iPhone app. How can I do it?

I am trying to use two different Core Data Models in a iPhone application, I created and correctly set up the first Core Data Model that uses SQLite as persistent object store. This one works very ...
2
votes
6answers
223 views

Storing data with a stand-alone C++ application

I work with Apache, PHP, and MySQL for web development and local applications. For the past couple of years I have slowly been learning C++ and want to build an application this summer. Specifically, ...
2
votes
5answers
160 views

Is it okay to store user data in XML files?

I have an app that is being used by a few users (< 12 users). There are less than 2000 records so I decided to use an XML file and store the file under \company\product\p.xml. Is this okay or am I ...
2
votes
2answers
106 views

Data Storage question

Another newbie question: What's the best way to store data in a Cocoa application written in Obj-C? For example if I want to create a sort of "quizzer" that quizzes the user with pre-written (and ...
2
votes
9answers
310 views

Alternative of Storing data except databases like mysql,sql etc

I had completed my project Address Book in Java core, in which my data is stored in database (MySql). I am facing a problem that when i run my program on other computer than tere is the requirement ...
2
votes
5answers
201 views

Are there any libraries or components that handle storage and fast retrieval of user-generated content?

Considering the case of having a large and active user base where each user wants to store a profile picture and some additional images or other artifacts, are there any libraries or frameworks that ...
2
votes
2answers
108 views

Should I store emails in a DB or in a text file?

I need to store email address from a simple form (like a newsletter), but the website loading is high, I'm then wondering if I'd rather store them to a text file (eventually write a cronjob to store ...
2
votes
4answers
694 views

Fast, searchable dict storage for Python

Current I use SQLite (w/ SQLAlchemy) to store about 5000 dict objects. Each dict object corresponds to an entry in PyPI with keys - (name, version, summary .. sometimes 'description' can be as big as ...
1
vote
5answers
32 views

MySQL currency storage

http://www.ozzu.com/programming-forum/mysql-storing-dollar-amounts-field-type-t106432.html This forum seems to suggest you should store currency such as USD in its lowest common denominator ie: cents ...

1 2 3