0
votes
1answer
56 views

binding SQL data to extract columns

From my ASP.NET c# application, I want to run a SQL query and store all the column values so that I can use them in my application. For example, select name, age, phone, address, work from UserInfo ...
0
votes
1answer
593 views

How to set RowFilter case-insensitive for DataView

I have a datagrid, its datasource is a dataview. There is a textbox with which users can type in filter text. I want to make the filter to be case insensitive. say, the typed text is "Tg" I tried ...
1
vote
1answer
64 views

SSAS Cannot run SQL statement in data view source

I'm trying to add a "new named query" in Data View Source of SSAS. However, with a simple statement like Select PlayerID From dbo.FactGames , error pops up when I click on the green arrow to run. ...
0
votes
1answer
61 views

Error on filling a gridview based on the values of a dataview from a different table with no direct FK's

I have these tables: TABLE_DIRECTOR -directorID -name -adres -birthDate -yearsExperience TABLE_FILM -filmID -directorID -filmstudioID -title -budget -filmstudioName -directorName TABLE_FILMSTUDIO ...
1
vote
1answer
364 views

How to update only one row in DataView from SQL database?

I have a situation where I have a grid loaded with data. It is not data bound. Clicking an image opens up another form that allows the change of the data in the grid. Right now the changed data (1 ...
0
votes
1answer
229 views

nested select statements taking too long to load on SQL server

I have a page that displays reports on a grid. The grid uses an Object data source which is bound to a class that returns data. The class itself uses standard SQL query to return a count of records ...
0
votes
1answer
487 views

about update data on datagridview and filter

i'm getting confuse about dataset and dataview, which i either use dataset to update data or dataview to filter data, but cannot have both together at the same time. Private Sub ...
0
votes
1answer
1k views

Dataview RowFilter escape invalid characters

Does any one have a handy ready to use method to escape wildcards, invalid characters in the string to be assigned to RowFilter for a DataView in C#. The rules somewhat are like below If a column ...
1
vote
1answer
130 views

SQL statement not being correctly populated from DetailsView (ASPX/C#)

I've got the following code in an ASPX page: <asp:DetailsView ID="DetailsView4" runat="server" AutoGenerateRows="False" DataKeyNames="ChangeID,Completed" ...
0
votes
2answers
1k views

Filter records based on Time using Dataview Rowfilter

Is it possible to get records between a Timespan from a DataTable using the RowFilter property of the Defaultview that belongs to the table. Purpose: I would like to check if Current ...
0
votes
2answers
863 views

DataView.Filter not working with multiple % in “like %”?

Below SQL query works when the spaces in the role name are replaced by %: 1 row is returned select * from cmrdata.dbo.tblRoles where rolename like '%Super%Administrator%' However, when I try to ...
1
vote
6answers
28k views

SELECT DISTINCT in DataView's RowFilter

I'm trying to narrow down the rows that are in my DataView based on a relation with another table, and the RowFilter I'm using is as follows; dv = new DataView(myDS.myTable, "id IN (SELECT ...
0
votes
2answers
517 views

Viewing selected columns

I'm doing .NET 3.5 programming in VB for a class. I have a .mdb database with 3 related tables, and a table adapter with some queries on it that look like this: SELECT PropertyID, Street, Unit, ...
4
votes
3answers
5k views

What SQL query or view will show “dynamic columns”

I have a table of data, and I allow people to add meta data to that table. I give them an interface that allows them to treat it as though they're adding extra columns to the table their data is ...