| Thread | Last Post | Replies |
|
| Problem getting SCOPE_IDENTITY() | 11 Feb 2005 12:30 GMT | 2 |
I have a function which takes a table and calls DA.Update with that table. I can't seem to get my new ids returned back to me. My second problem is I don't like using the select * for the SelectCommand. I was thinking of adding where '1' = '2' but think that will definitly not
|
| MySQL Connector .NET | 11 Feb 2005 09:05 GMT | 1 |
Have anyone here uses MySQL with a .NET web application? How difficult it is to connect to the database and from the web application? Can you get me a sample code on how to use the connector? Any help or comments are welcome. Thank you.
|
| Update a dataset | 11 Feb 2005 03:50 GMT | 9 |
I think this post was more appropriate here... How do I Update a dataset into a DB if the orginal SqlDataAdapter I used to fill the dataset is gone? Thanks
|
| Question on Dataset | 11 Feb 2005 02:25 GMT | 3 |
Can one transfer an UnCommitted Dataset (AcceptChanges hasn't been called) through WebServices? If yes, are the RowVersions also transmitted? Thanks a lot!
|
| Unable to read BLOB objects through ADO.NET | 11 Feb 2005 02:11 GMT | 6 |
I need the help deperately. My requirement is that i have to retrieve BLOB object from the Oracle and need to save it on the Hard Disk through ADO.NET. For this purpose i have tried it with OLEDB.NET Data provider and also
|
| MS Access 97 error message "Couldn't find SAM" | 11 Feb 2005 01:44 GMT | 3 |
I upgraded my computer from windows 98 2nd edition to microsoft office XP professional edition. Then, I uninstall MS office 97 and reinstall it to fix some issue regarding accessing to my MS Access 97 database. After the installation, I cannot run a query to import an external ...
|
| IDataReader and OleDbDataReader... | 11 Feb 2005 01:03 GMT | 1 |
Whats the best way to check and see if the IDataReader Has Rows since it doesn't support HasRows like the other DataReaders? Thanks ahead of time, Mike
|
| auto incrementing field | 11 Feb 2005 01:02 GMT | 1 |
i need to create a autoincrementing primary key field in a access database thru a sql command, (that kind of field is called a long integer in access, and it autoincrements when a new record is added) the following gets the field type created, but it doesn't auto increment.
|
| update statement with oledbconnection | 11 Feb 2005 00:09 GMT | 3 |
Hi, Can any1 help me identify the problem with my update statement? Everytime I'm trying to run it, there's "invalid sql statement. expected 'delete', 'insert', 'procedure' or 'update'. error msg coming up. Or could it be something else? Here's the code. Thx in advance!
|
| Is it possible to use Command.Prepare with connection pooling? | 10 Feb 2005 21:30 GMT | 4 |
I've been thinking about using command.Prepare() to prepare the execution of some of the statements that I run repeatedly in the database. We have run into situations where prepared statements have drastically improved performance, especially against Oracle.
|
| Unique columns in a dataset | 10 Feb 2005 21:29 GMT | 1 |
I have a dataset with which I want to populate a TreeView. This dataset contains tasks by person, therefore a person will repeat often in the dataset. The first node of the TreeView is "Person" and under this node is his/her tasks. I want one node per unique person in the dataset ...
|
| covariant return type | 10 Feb 2005 21:15 GMT | 1 |
I am new to .Net, ADO.Net and i have to programm an independent dataprovider (no sql, no oledb, no odbc) and in addition it has to be in visual c++ :( untill now i have two classes. Class Conn derived from IDbConnection and class comm derived from idbcommand.
|
| Unable to list correct tables with OleDbSchemaTable | 10 Feb 2005 19:12 GMT | 2 |
I'm using OleDbConnection.GetOleDbSchemaTable() to obtain the name of all the tables in an access database. This is a bit of my code: OleDbConnection connection = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" +
|
| Save & Refresh SELECT Statement | 10 Feb 2005 18:57 GMT | 1 |
So, I am updating a SQL Database using a Windows Form. When I save the record I would like to refresh the SELECT command, but I don't know how. Is it possible to refresh the dataadapter or reselect so a Combo Box is properly updated with the changes?
|
| DataAdapter Design Question | 10 Feb 2005 18:31 GMT | 1 |
I see many examples of subs or functions that intialize a connection, dataadapter, commands, parameters, etc. and then fill a datatable or dataset table. So my question comes from how do you handle dataadapters and scope? Do
|