storing-information

If I'm not going to be saving data into an SQL database, where should I be saving it?

I'm making an encyclopedia program of sorts similar to RAWR for World of Warcraft. I'm not going to be saving data de an SQL database, but I've been conditioned so hard to always do this when I'm sure there are alternatives for these lighter case uses. For example, my program will have no creation of new data via user input, nor deletio...

How to store python classes into a database with Django ?

Hi, I have two files: choices.py class SomeChoice: name = u"lorem" class AnotherChoice: name = u"ipsum" # etc... models.py from django.db import models import choices class SomeModel(models.Model): CHOICES = ( (1, choices.SomeChoice.name), (2, choices.AnotherChoice.name), # etc... ) so...

creating a plist file programatically

this question is regarding xcode objective c and iphone development: So i want to store an array in a new plist file and I know how to retrieve the file path and write the data into the file (at least i think i do) and all that jazz once the plist is created, but how do I actually create the plist file the first time the app is run or t...

Storing XML dataset in SQL Server 2000

I need to save the DataSet, results of a reporting app, to a table in SQL Server 2000. Do I save the datasets the same way I would store files in the DB, via Byte Array()? ...

How to prepare Cyrilic and other variables for storing into MySql DB? (PHP)

How to prepare Cyrilic and other variables for storing into MySql DB? (PHP) So I need realy simple way to prepare recived from browser $_GET[string] variables for storing into DB. How to do such thing? ...

Facebook Photo Contest App Against FB's TOS ??

What would be possible/best practice for a Photo Contest app? Saving photos to a database and refreshing the contents with an "infinite session"? Exporting photos to my site getting written consent from my user? I've gathered that it won't be possible to present users with a number of photos to vote on because the permissions for use...

Methods of storing permanent data in java

I am currently doing a programming assignment and it says that we should "store all the data in a data file and need to check the compatibility of the user PIN and account no. validity" Unfortunately my lecturer has not taught us about data files, and when I googled I found two different answers, Store data in notepad (.txt) file Stor...