Can we select the table data without using select statement [closed] - asp.net

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Is it possible to select the data using indexes without using select statement...

No, you can not, you have to use it anyway. You can use stored procedure and call them from asp.net but stored procedure would have select statement to get data from tables.

Related

How to rectify the error in asp.net [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I create an one webpage in asp.net all the time i am facing the following pbm how to rectify it..
if(ds.Tables[0].Rows.Count > 0)
Maybe you need to check that ds.Tables[0] exists first
If you are constantly checking on your pages to see if that dataset has a table with rows, I would think you would want to make some helper class to check that your dataset is not null, and that whatever tables have actual rows. Also you might want to think about moving these to typed datasets.

how to reverse records in pl/sql [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
how to reverse records in pl/sql
Use an ORDER BY clause with either ASCENDING or DESCENDING when selecting your records.
If this isn't what you want, you need to learn how to ask questions, as this is rather vague and open to interpretation.

How can I store the image in websql(SQLite)? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I want to store images in websql(sqllite).so please provide the procedure to store images in websql.
Sqlite has a data type called BLOB which is common in many DBMSes.
You can serialize the image as byte[] ans save it to column just like other data types.
Here is the same questoin How do i store and retrieve a blob from sqlite asked and answered.

Drop Down List Selected Value is Null Problem [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
Dropdwon list binding with null value in database
solution:
select job_id,job_name from jobs union select null as none ,null as none
Drop Down List Selected Value Is Null Solution.

asp.net mvc module wiseapproach or table wise approach [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
asp.net mvc module wise approach or different controller and repository for each table approach is better?
Could you elaborate on your question? I think I understand... I like creating a repository for each table in a LINQ-to-SQL or entities model, for instance. I think that helps group together related logic.
HTH.

Resources