Tagged Questions
The data-driven tag has no wiki summary.
14
votes
6answers
407 views
Thoughts on minimize code and maximize data philosophy
I have heard of the concept of minimizing code and maximizing data, and was wondering what advice other people can give me on how/why I should do this when building my own systems.
11
votes
5answers
2k views
A python web application framework for tight DB/GUI coupling?
I'm a firm believer of the heretic thought of tight coupling between the backend and frontend: I want existing, implied knowledge about a backend to be automatically made use of when generating user ...
7
votes
3answers
309 views
Is data-driven testing bad?
I've started using googletest to implement tests and stumbled across this quote in the documentation regarding value-parameterized tests
You want to test your code over various inputs (a.k.a. ...
7
votes
8answers
4k views
What is data-driven programming?
I've been tasked at work to write a detailed engineering plan for a logistics application that we are coding to propose to a customer. I have been told that it is a data-driven application. What does ...
5
votes
9answers
330 views
Which scripting language to support in an existing codebase?
I'm looking at adding scripting functionality to an existing codebase and am weighing up the pros/cons of various packages. Lua is probably the most obvious choice, but I was wondering if people have ...
4
votes
1answer
207 views
Game engine and data driven design
I've heard about data driven design and have been researching about it for a while. So, I've read several articles to get the concepts.
One of the article is Data Driven Design written by Kyle ...
3
votes
11answers
330 views
Pros and cons of making database IDs consistent and “readable” [closed]
Question
Is it a good rule of thumb for database IDs to be "meaningless?" Conversely, are there significant benefits from having IDs structured in a way where they can be recognized at a glance? ...
3
votes
2answers
590 views
CRUD-style data driven distributed .NET application architecture questions
Context: Building a smart client application on the .NET platform where you have a complex database model with a high number of columns involved. The natural application style is a typical data driven ...
3
votes
2answers
542 views
Data-driven state machine application
We are currently working on a "data-driven" state machine application. Right now, the state flows are all configured in the database, but none of the decision/business logic is configurable in the DB ...
1
vote
1answer
84 views
Data-driven approach to networking in C. This can't be new?
I'd like to know whether something like this has been done before:
I've recently started work on a networking library in C. The library maintains a set of sockets, each of which is associated with ...
1
vote
1answer
463 views
Reporting services subscription reports errors, but logs don't give details
Where can I find more detail about my subscription errors.
I have a data driven subscription, showing status:
Done: 24 processed of 24 total; 24 errors.
but my trace file ...
1
vote
1answer
82 views
ASP.NET 4.0 Database Created Pages
I want to create ASP.NET 4.0 dynamic pages loaded from my MS SQL server. Basically, it's a list of locations with information. For example:
Location1 would have the page ...
1
vote
1answer
3k views
Excel driven Selenium Tests
Is there any way we can extract Selenium-IDE output as an excel sheet and then use java reflection to trigger them one-by-one? Any existing good tool already done this?
1
vote
2answers
134 views
Data-driven dependency injection
Are there any frameworks out there that allow for data-driven dependency injection (ideally in .NET)? I'm thinking something inspired by Spring.NET for example, where you configure your object graphs ...
1
vote
4answers
348 views
Can you send dynamic data to a processing applet?
I have an ajax page which pulls data from a database. I'd like to add a processing applet to visualize the data but i can't figure out how to update the visualization as the data changes. The idea is ...
0
votes
0answers
30 views
Unit Testing data driven PHP applications
In python I use a mock framework of some kind to mock up external dependencies and libraries like the database queries that need to be run, and the results that they get back. How is this kind of ...
0
votes
0answers
38 views
How to do visual Studio Data driven test using multiple tables in XML
<?xml version="1.0" encoding="utf-8" ?>
<Listing>
<Data>
<InputParameters>
<InputID>1600</InputID>
...
0
votes
1answer
33 views
MIDI and XML: Is there a project/community that is modelling MIDI device specifics (MIDI SysEx) using XML?
Is there a project community that is developing a common set of XML languages, toolkits, code libraries for programming specific features of a diverse range of MIDI devices?
Specific capabilities of ...
0
votes
1answer
203 views
How do I create a data-driven SSRS subscription from a SharePoint List?
I am trying to set up a data driven subscription to an SSRS report. I'd like to use a sharepoint list that contains the recipient email address and a report parameter that will filter the contents of ...
0
votes
3answers
421 views
Is there a standard template for a HTML5/Javascript USA map? Commerical or otherwise
I am planning to develop a database driven USA map app. I would like the map itself to be HTML5 and scripted using JS.
Are there standard USA maps in HTML5 which are configurable - either as a ...
0
votes
1answer
42 views
How do I control the type of a column in data-driven unit test with CSV datasource?
I have a data driven unit test that uses a CSV file for its data source. One of the columns in my file is meant to be treated as a string. It works fine until I add a line where the value for that ...
0
votes
1answer
178 views
PHP Menu - How To Recursively Delete Parent and Child
I am working on a data driven menu system in PHP /MySQL. I can't figure out how to delete menu items without leaving some of them orphaned.
All top level menu items have a zero (0) parent id value ...
0
votes
1answer
17 views
Data files when using intepreted languages
Say I have some data which I want several kinds of. I think the easiest example could be tiles in a game: I would have grass, rock, tree, etc. each with different sets of values.
I would immediately ...
0
votes
2answers
242 views
“Mail merge”-like functionality in Dreamweaver, or in any other web editing tool?
I have inherited several related, low-traffic web sites to manage and edit. These sites are implemented with static html, and they've accrued lots of stray tags and other cruft. I want to try to ...
0
votes
4answers
113 views
In a database driven web app, what should the user see when the database is unavailable?
If a web application relies on a database to serve dynamic content and that content is unavailable for whatever reason (database server down, etc.), what is the preferred method for handling this ...
0
votes
1answer
192 views
How to drill down in the data driven unit tests results on Hudson with MSTest
Our continuous integration server is powered by Hudson with MSTest.
We use the Hudson MSTest plugin.
Everything works fine, except there is a problem when a data driven unit test fails. The MSTest ...