Questions tagged [static-data]

Static or reference data is information encoded by a programmer which generally does not change at runtime. Contrast to transactional or operational data which is generated or modified by user activity or other events at runtime. The term "static data" typically refers to data in a database context, though not necessarily so.

Static or reference data is information encoded by a programmer which generally does not change at runtime. Contrast to transactional or operational data which is generated or modified by user activity or other events at runtime.

The term "static data" typically refers to data in a database context, though not necessarily so.

57 questions
0
votes
1 answer

Advise regarding static data in an application and testing

I am working on a pretty typical asp.net web site and using sql server 2005 as database. I have created a Model dll holding the applications typical business logic. The application is dependent of some static data which is stored in the db in lack…
terjetyl
  • 9,497
  • 4
  • 54
  • 72
0
votes
1 answer

Data type of attributes in igraph, python

In order to speed up my code, I am using Cython. I was wondering whether it is possible to fix the type of attributes for a Graph object in igraph?
mmg
  • 11
  • 4
0
votes
3 answers

Shipping static data with an iPhone app

I'm making a game and I need to be able to ship some data about the game's various ships and details about them that the app will use. I'm looking for what the ideal way to do this would be. Now I've narrowed it down to using either SQLite, Core…
Alexander
  • 409
  • 1
  • 4
  • 14
0
votes
1 answer

Storing static data in JSON file vs PHP file itself?

I'm writing a web service in PHP using the slim framework. Any request made to any endpoint will only be allowed if (a) the request is coming from a list of IPs (b) the HTTP request header contains a secret string, which is static (I know this isn't…
AyushISM
  • 381
  • 7
  • 21
0
votes
1 answer

Creating an android Application containing only static data

I am going to work on an android application. The basic flow should be like : 1. Main Activity **-cat1** -subcategory 1 -subcategory 2 **-cat2** -subcategory 1 -subcategory 2 **-cat3** -subcategory 1 -subcategory 2 this should be the…
user4584887
0
votes
1 answer

Static data or Application Object or Cache in MVC apps

I am building a website using MVC4. I have a set of objects, which are almost static by nature. Should I opt for Application object or Static data or Cache?
Krishna Sarma
  • 1,852
  • 2
  • 29
  • 52
0
votes
1 answer

Extjs 5.0 grid paging with static data

Pagination is not working for my grid. Could somebody please let me know why. Am making use of static data which is got by reading the xml from controller. I want to display 10 records per page. Model.js Ext.define('Mymodel.model.settingModel', { …
ASR
  • 421
  • 11
  • 27
0
votes
1 answer

Storing static table data as a collection in myBatis

I am using myBatis for my ORM frameowrk.I need to load the data of a static table(for eg country table) into memory and be able to use whenever needed by other business objects.Is there any effective way to carry out this in myBatis ?
Krithika Vittal
  • 1,477
  • 2
  • 16
  • 32
0
votes
2 answers

Other methods of providing static content

Are there any other methods to adding static data to a textview? Example: I currently have an activity friendship.xml and there would be a textview box, the content/text of this is currently defined as @string/friendship. This is configured under…
0
votes
2 answers

Static data on iphone c++

I have data for countries which include Name, Population, Area etc for countries... What is the best way to store them, I was thinking of static arrays in header files ...? I am using c++ primarily for some game on iPhone Should I consider other…
Asad Khan
  • 11,469
  • 13
  • 44
  • 59
0
votes
3 answers

Need to store static data in a yml file for syncing with the DB

I have a set of shipping codes that I want to be able to store in our database. I will be adding to this list in the future, so ideally I'd like to have them in a YML fie that I can just add to. I want to be able to run a task that will populate the…
tesserakt
  • 3,231
  • 4
  • 27
  • 40
0
votes
2 answers

How can I get a static SQLite database to show up in my listView

I'll start off by listing the code i have thus far... This is my main Activity class: public class SQLiteDatabaseMain extends Activity { ListView list; DatabaseHelper helper; SQLiteDatabase db; DatabaseAdapter adapter; …
1 2 3
4