Tagged Questions
Questions about views, a database construct that allows a user to join several tables together or restrict access to certain data. For questions about the Drupal module named Views, use "drupal-views".
31
votes
13answers
1k views
What are views good for?
I'm just trying to get a general idea of what views are used for in RDBMSes. That is to say, I know what a view is and how to make one. I also know what I've used them for in the past.
But I want ...
22
votes
6answers
78k views
What is the difference between Views and Materialized Views in Oracle?
What is the difference between Views and Materialized Views in Oracle?
21
votes
6answers
3k views
How Would I Change ASP.NET MVC Views Based on Device Type?
I'm working my way through some ASP.NET MVC reading and I have a web app at work that I'll be migrating from WebForms to MVC. One of the feature requests I expect to get in the process is to have a ...
20
votes
2answers
328 views
Who is diana, and why won't she let my database objects compile?
OK, so the question title is a little tongue-in-cheek, but the question is serious enough. Occasionally, when compiling the objects in a schema or importing a dump file, I see the following error ...
20
votes
4answers
9k views
ASP.net MVC, display a view from another controller
Is it possible to display a view from another controller?
Say for example I have a CategoriesController and a Category/NotFound.aspx view. While in the CategoriesController I can easly return ...
17
votes
2answers
417 views
Scala: What are views for collections and when would you want to use them?
In Scala, for many (all?) types of collections you can create views.
What exactly is a view and for which purposes are views useful?
13
votes
3answers
9k views
How to create EditText with rounded corners?
Is there any way to create EditText that has rounded corners?
13
votes
7answers
3k views
Can I specify a custom location to “search for views” in ASP.NET MVC?
I have the following layout for my mvc project:
/Controllers
/Demo
/Demo/DemoArea1Controller
/Demo/DemoArea2Controller
etc...
/Views
/Demo
/Demo/DemoArea1/Index.aspx
/Demo/DemoArea2/Index.aspx
...
13
votes
4answers
48k views
13
votes
8answers
7k views
Class views in Django
Django view points to a function, which can be a problem if you want to change only a bit of functionality. Yes, I could have million keyword arguments and even more if statements in the function, but ...
12
votes
4answers
15k views
Advanced search with Drupal (Views and CCK)
I'm building a site where products are hold in a content type created with CCK. Products can be associated with multiple taxonomy vocabularities. Now I need an advanced product search which user could ...
12
votes
3answers
7k views
How do i add Javascript to an ASP.NET MVC View?
simple question i'm sure (blush). I have a simple View and I wish to add a JQuery DatePicker javascript to this view (and not every view, via a masterpage).
I'm not sure what is the best way to do ...
11
votes
2answers
1k views
“select * from table” vs “select colA, colB, etc. from table” interesting behaviour in SQL Server 2005
Apology for a lengthy post, but I needed to post some code to illustrate the problem.
Inspired by the question *What is the reason not to use select ?, I decided to point out some observations of the ...
10
votes
12answers
2k views
TSQL foreign keys on views?
I have a SQL-Server 2008 database and a schema which uses foreign key constraints to enforce referential integrity. Works as intended. Now the user creates views on the original tables to work on ...
10
votes
7answers
1k views
asp.net MVC - complex example?
We're evaluating asp.net MVC and are looking for some more complicated examples over and above NerdDinner.
Specifically, in a more complex web app, I might have a navigation bar (including primary ...
10
votes
3answers
4k views
Avoid “The class or CssClass value is not defined” Warnings in ASP.NET MVC ASCX Partial Views (UserControls)
I wondered how I can stop those annoying compiler warnings "The class or CssClass value is not defined" coming from my ASP.NET MVC partial views/ASCX user controls. The CSS is correctly defined, but ...
10
votes
6answers
4k views
Do database views affect query performance?
Are database views only a means to simplify the access of data or does it provide performance benefits when accessing the views as opposed to just running the query which the view is based on? I ...
9
votes
8answers
290 views
What are the downsides of using SqlServer Views?
What are the downsides of using SqlServer Views?
I create views frequently to show my data in a denormalized form.
I find it much easier and therefore faster, less error prone, and more self ...
9
votes
1answer
831 views
Storing ASP.Net MVC Views in the Database
For an ASP.Net MVC application, I'm interested in storing some views and/or partial views in the database so that a few semi-technical users can do some basic view logic. Does anyone have any tips or ...
9
votes
3answers
7k views
how to add a code-behind page to a view or partial view
I notice with the latest version of ASP.NET MVC that a View no longer defaults to having code-behind classes.
How do I go about adding a code-behind class now to a View or Partial View??
8
votes
5answers
5k views
Transition behavior using transitionFromView and transitionWithView
I am attempting to create a transition between two subviews (view1 and view2). When a button is pressed I want view1 (front) to flip and show view2 (back). I have tried both transitionFromView and ...
8
votes
10answers
338 views
What are views in MySQL?
What are views in MySQL? What's the point of views and how often are they used in the real world.
I'm after a layman explanation please with a example if possible to aid my understanding!
Thank you ...
8
votes
1answer
2k views
ASP.NET MVC generic base view class
I can have a base class for views in an MVC project like this:
public class BaseViewPage : System.Web.Mvc.ViewPage
{
public string Something { get; set; }
}
And then in the ASPX I can do this:
...
8
votes
8answers
138 views
SQL View or Table
I have a table of data that gets update once a week. I then have a query that process this data and essentially returns a list of codes and the amount of hours booked to those codes. This query is ...
8
votes
3answers
13k views
Iphone sdk tabbar View outlet was not set
I'm about at the end of my rope with this freaking project!!!!!!!
I have a UIViewController class that is linked to a nib that has a tabbar controller with 2 tabs. Both tabs load nib files. When I ...
8
votes
1answer
2k views
How do I use an extension method in an ASP.NET MVC View?
How do I access an extension method in an ASP.Net MVC View? In C# I do
using MyProject.Extensions;
and I remember seeing an XML equivalent to put in a view, but I can't find it anymore.
8
votes
4answers
2k views
Separating Django App Views
If the app/views.py file gets very large, should I separate it? If so, what is the best way to do this?
8
votes
4answers
5k views
MySQL: Views vs Stored Procedures
Since MySQL started supporting stored procedures, I've never really used them. Partly because I'm not a great query writer, partly because I often work with DBAs who make those choices for me, partly ...
8
votes
6answers
1k views
How much logic is allowed in ASP.NET MVC views?
In looking at samples of ASP.NET MVC sites, I'm seeing quite a bit of examples with embedded logic in the views, e.g.:
<% if (customerIsAllowed)
{ %>
<p>nnn</p>
...
8
votes
3answers
6k views
Is it possible to have an indexed view in MySQL?
I found a posting on the MySQL forums from 2005, but nothing more recent than that. Based on that, it's not possible. But a lot can change in 3-4 years.
What I'm looking for is a way to have an index ...
7
votes
7answers
158 views
Is there a reason not to use views in Oracle?
I have recently noticed that nobody uses views in my company (and it's a big company).
I want to create a few views largely because they make my queries simpler to the eye, and these views are on ...
7
votes
3answers
2k views
EditorFor() and additionalViewData: how to add data in helper class?
EditorFor() can take an object additionalViewData parameter which the typical method to populate is something like:
EditorFor(model => model.PropertyName, new { myKey = "myValue" })
How can I ...
7
votes
6answers
3k views
Restoring state of TextView after screen rotation?
In my app I have Textview and EditView. Both have data in it. When the screen orientation changes the data in the Editview remains, but Textview data is cleared.
I am confused ...
Can some one help ...
7
votes
4answers
3k views
Error about 'invalid JSON' with couchDB view but the json's fine
I am trying to setup the following view on CouchDB
{
"_id":"_design/id",
"_rev":"1-9be2e55e05ac368da3047841f301203d",
"language":"javascript",
"views":{ "by_id":{
"map" : ...
7
votes
3answers
4k views
Buttons to fill width when using TableLayout
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content" android:layout_height="wrap_content">
...
7
votes
1answer
648 views
Sinatra Sub-Directory Views
I want to be able to get Sinatra views from sub-directories of ./views (such as ./views/admin). I know you can set the views like so:
set :views, Proc.new { File.join(root, "templates") }
But how ...
6
votes
1answer
100 views
What would be the answer to this simple SQL question?
Just doing some revision, and one of the questions is:
"Explain what is meant by 'query
modification' as an approach to
implementing views."
Now, I'm not quite sure how to answer that... I ...
6
votes
3answers
580 views
Test Views in ASP.NET MVC2 (ala RSpec)
I am really missing heavily the ability to test Views independently of controllers. The way RSpec does it.
What I want to do is to perform assertions on the rendered view (where no controller is ...
6
votes
7answers
119 views
Using Views in SQL
I have a view that is created from a base table.This view is basically the exact copy of table without any filter conditons and it has all the columns and records of the table.
Is there any advantage ...
6
votes
2answers
1k views
Rails: Refactoring, views, helpers: how does it all go together?
Warning: Noob here.
I know this is a trivial subject but I'm having a lot of difficulty in figuring out how exactly I can simplify my views by moving parts of them into helpers. For example, I've ...
6
votes
3answers
1k views
Track the number of “page views” or “hits” of an object?
I am sure that someone has a pluggable app (or tutorial) out there that approximates this, but I have having trouble finding it: I want to be able to track the number of "views" a particular object ...
6
votes
1answer
1k views
Using default namespaces in .NET MVC for views without using import?
How do you configure the views to able to reference a namespace like System.Web.Mvc without having to do <%@ Import Namespace="System.Web.Mvc" %>? I remember seeing this somewhere but my google ...
5
votes
2answers
143 views
How do I test that Asp.Net MVC Views are rendered without exceptions?
I have come up with a small issue in my application.
I changed the namespace of my main application to be from MyApp.Models to MyApp.ViewModels so that the namespaces were less confusing overall ...
5
votes
2answers
665 views
Django pdf question with pisa
I want to generate a html template to a pdf file using pisa. I believe I have all the packages I need but I seem to be having problems doing so. Here is my view below so
far what I have done.
...
5
votes
2answers
268 views
Read DataAnnotations from a collection of models in an MCV2 view
In my MVC2 AdminArea I'd like to create an overview table for each of my domain models.
I am using DataAnnotations like the following for the properties of those domain model objects:
...
5
votes
1answer
1k views
Can I make Visual Studio place curly braces on the same line as an if statement (in HTML)?
In Visual Studio while designing MVC views (in .aspx or .ascx files) I often use if statements. When I auto-format (Ctrl-K,D), VS wraps the braces in this really ugly and hard to read way:
<% if ...
5
votes
2answers
188 views
ASP.NET MVC Show to end user that action was successful
Most of the ASP.NET MVC examples I have seen depict scenarios where a user is viewing an object (or collection of objects) and then moves from that page to one that displays a form that the user ...
5
votes
2answers
105 views
Branching logic in an MVC view
I find myself writing a lot of code in my views that looks like the code below. In this case, I want to add some explanatory HTML for a novice, and different HTML for an expert user.
<% if ...
5
votes
2answers
295 views
Why use NoSQL over Materialized Views?
There has been a lot of talk recently about NoSQL.
The #1 reason why I hear people use NoSQL is because they start to de-normalize their DBMS data so much so, to increase performance, that they end ...
5
votes
3answers
2k views
Getting the error “The view at '~/Views/Page/home.aspx' must derive from ViewPage, ViewPage<TViewData>, ViewUserControl, or ViewUserControl<TViewData>”
I've just installed MVC2 and I've got a view that looks like this
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Home.Master" Inherits="System.Web.Mvc.ViewPage" %>
...