Tagged Questions
0
votes
0answers
123 views
SQL Server CE TableAdapter Delete method don´t delete database row
I have problem trying to delete a row from a SQL Server CE database (.sdf file).
My code:
public int DeleteUserEvent(int rowID)
{
FASK_UserEventsTableAdapter eventsta = null;
try
{
...
0
votes
1answer
151 views
c# - SQL CE - TableAdaptor @@IDENTITY
i have the following Insert Statement:
In my table ID is Primary Key...
INSERT INTO Student(Name,Family,Address);
I create other query in TableAdapter called SelectID
SELECT @@IDENTITY;
now back ...
0
votes
1answer
83 views
How to check for Null on 2 different datasets and not output null tables
I have a program that auto launches with Windows via scheduler. What it does is runs a query and then emails the results of the query. This all works. We have 10 locations so I will be editing this ...
0
votes
1answer
111 views
How to email multiple queries to multiple users
I have a program that auto launches with Windows via scheduler. What it does is runs a query and then emails the results of the query. This all works. What i'd like to do is take the program to the ...
0
votes
0answers
1k views
TableAdapter.GetData(@Param) returns no records using LIKE, Query Builder does though, a bug?
I've spent the whole day trying to figure out why my table adapter returns absolutely nothing.
Here's the code:
String EmpID = "'%" + txtName.Text + "%'";
...
1
vote
1answer
316 views
Generating a paramatarized query with variable number of parameters
I have some designer generated code that I am using to query a dataset. The designer generated it because I have a Form with a ReportViewer which created it's own BindingSouce andTableAdapter. I used ...
0
votes
1answer
656 views
Convert varchar to a double in DataSet TableAdapter Fill
In SQL Server 2008, I have a strongly typed data set with a table:
TABLE
ID (Guid)
Value (varchar(50))
This this table, Value actually represents an encrypted value on the database, which becomes ...
1
vote
1answer
999 views
ASP.NET Get a single value returned from TableAdapter Select Query
I'm using TableAdapters on my ASP.NET Project and I've become stuck on an issue of the way to retrieve this data.
The code is as follows:
BookingDataTableAdapters.bookingTableAdapter ta = new ...
