0
votes
2answers
36 views

MySQL updates from modified datagridview in c#

I have a form that contains a filtered datagridview (that hides entries marked "closed") based on a dataset and tableadapter from a MySQL database. I am stuck on one part that involves the launching ...
0
votes
0answers
13 views

mysql and VB connecting to a database

Can someone tell me if I understand these correctly? Data Binding/Binding Source Data Set Table Adapters This is my understanding: data binding is linking the program to an outside data source. ...
1
vote
0answers
460 views

MySQL Stored Procedures with parameterized arguments called from .NET TableAdapter not filtering data

I am using a connection string to directly connect to my local MySql database. When I try the following: Dim dtUsers As New dtUsers.UsersDataTable Dim taUsers As New ...
0
votes
1answer
294 views

How to get TableAdapters to properly run an insert and then a SELECT_LAST_ID()

Sniplet: int resNo = -1; MoviesTableAdapters.reservationTableAdapter resAdapter = new MoviesTableAdapters.reservationTableAdapter(); if (Int32.TryParse(info[1], out phoneNo)) { ...
0
votes
1answer
329 views

Problem when selecting MySQL stored procedure to populate datatable in Visual Studio

I am looking to populate a datatable with a MySQL stored procedure in Visual Studio. So I do the usual and add a TableAdapter to the DataSet and begin to fill in the details. I create the connection ...
0
votes
1answer
406 views

Mysql LIMIT statement in .NET TableAdapter query

I am adding the following query to a .NET dataset TableAdapter. select * from users ORDER BY RAND() LIMIT 0,10 But the LIMIT word is not recognized as a part of the query and I am unable to ...
0
votes
2answers
553 views

mysql and .net: when using tableadapters I’m getting MySqlException “insert command denied for user”, otherwise everything is fine

I am using mysql as db for my asp.net application. Here are the facts: I am using connection string from web.config which has both username and password. I can do SELECT with tableadapter. When I am ...
0
votes
1answer
327 views

mysql and .net: when using tableadapters I'm getting MySqlException “insert command denied for user”, otherwise everything is fine

I am using mysql as db for my asp.net application. Here are the facts: I am using connection string from web.config which has both username and password. I can do SELECT with tableadapter. When I am ...