mysqldatareader Questions
18
Solved
In my website, I am using MySQL database. I am using a webservice where in I do all my database related manipulations.
Now In one of the methods of that webservice, I get the following Error.
sele...
Yeoman asked 22/1, 2011 at 9:13
7
Solved
I am currently working on a C# project that will export MySQL Data. The export is for any database within the server so I am not going to know what fields and the data types that are in the table a...
Syneresis asked 9/8, 2011 at 15:42
9
Solved
How can I check for a NULL value in an open MySqlDataReader?
The following doesn't work; it's always hitting the else:
if (rdr.GetString("timeOut") == null)
{
queryResult.Egresstime = "Logged in...
Immortality asked 19/1, 2011 at 19:19
6
Solved
I have two tables orders and orderdetails
table orders (PK = id, UNIQUE index on orderno)
|id|orderno|
| 1|1000 |
| 2|1001 |
table orderdetails (PK = id)
|id|orderid|item|qty|
| 1| 1|ABC | 3|
...
Whoso asked 28/9, 2011 at 9:15
4
Solved
I try to write a class to make MySql Connections easier. My problem is, after I open a connection and close it. It is still open in the Database and gets aborted.
I'm using the 'using' statement' o...
Hankhanke asked 6/4, 2011 at 13:25
5
Based on links around the StackOverflow site (references below), I've come up with this block of code to perform queries from my C# application to a MySQL database.
using (var dbConn = new MySqlCo...
Tarton asked 10/11, 2012 at 2:22
1
© 2022 - 2024 — McMap. All rights reserved.