Tagged Questions
0
votes
0answers
105 views
error in dataset while adding sql procedure using vb.net
Using vb.net. dataset named as CIS.xsd. while adding procedure to this dataset show warning message from table adapter wizard like 'invalid object name #st1'.here i enclosed my sql procedure. but when ...
2
votes
1answer
140 views
Decimal passed incorrectly from C# to SQL Server with TableAdapters
Yesterday I noticed an odd behaviour when using TableAdapters, for some reason when passing a decimal < 0.1 it makes it into an integer. For example if I pass 1.0123, I can see 1.0123 in SQL ...
0
votes
1answer
164 views
Update date to database in vb
Everytime I wish to update the date into a database, It comes with this error
Conversion from type 'DataRowView' to type 'String' is not valid
Here is my code
Me.Validate()
...
0
votes
0answers
648 views
How do i use tableadapter to query the result in text box?
i have 2 tables, Student and Login. What i wanna do here is to fetch the LoginID from the Login table and display the correct student name and address in the textbox but every time i run it, it give ...
0
votes
0answers
109 views
Trouble with updating register form into sql
The data that i entered into the register form doesn't update into the SQL database after i close the form
INSERT INTO Login(username, password)
VALUES(@username,@password);
SELECT username, ...
1
vote
1answer
2k views
C# TableAdapter Insert Method Missing
I am using the C# VS2010 TableAdapter Wizard for my project to interface with my db. I have generated my own Insert, Update and Delete commands for this adapter since it uses a join and can not ...
0
votes
1answer
968 views
Tableadapter.fill times out when table is empty
I have a View that i am trying to use to fill a TableAdapter with. In my code i fill the table adapter properly the first time, filter my bindingsource and use datarowviews to loop through the rows of ...
0
votes
2answers
43 views
Database Changes Rolled back when rebuilding the .SLN (VS2008)
So, folks. Got an interesting occurrence going on here.
I have a windows forms application made in VS2008 which has, up until recently, been connecting to a SQL Server 2008 database. I was able to ...