| Thread | Last Post | Replies |
|
| "Invalid Buffer Received from Client" when using BigInt parameter vs Int | 11 Oct 2004 16:15 GMT | 1 |
Why would this fail(using int64/BigInt): Dim mParmValue As System.Int64 = 133 Dim mParm As New System.Data.SqlClient.SqlParameter("@UserID", System.Data.SqlDbType.BigInt)
|
| closing a sqldatareader connection. | 11 Oct 2004 16:00 GMT | 8 |
greeting, attach below are my codes for a sqldatareader method, it returns a sqldatareader. if you notice, i have my close connection in the finally method. anyway, since its returning a sqldatareader, i cannt read it and i
|
| sql multiple databases | 11 Oct 2004 15:53 GMT | 2 |
I have two tables in different servers that i need to do a join on: Server1: employees1 -employeeID
|
| Problems creating stored procedure using command text | 11 Oct 2004 14:55 GMT | 6 |
I am trying to write a program to create a database by executing the T-SQL statments for the databases Tables, Views Stored Procedures etc. I have a file that contains all the T-Sql Script. The program I have written will create the tables ok, the views and even some of the ...
|
| Display of Command execution. | 11 Oct 2004 14:42 GMT | 4 |
I have some queries with a command time out of some 10 minutes. This is taking solong that users offen think the app is hanging. To prevent them of complaining i want to display an progress indicator. Is there anyone who can tell me on how to deal with this in asp.net and ado.net. ...
|
| Access denied while loading class library | 11 Oct 2004 14:01 GMT | 1 |
I have wrote a test application to access class library from different location and the configuration file created through .NET framework configuration looks like this <?xml version="1.0"?>
|
| Trapping duplicate record exceptions | 11 Oct 2004 13:17 GMT | 3 |
Is there a specific way in ado.net of trapping an attempted (Access) database update by da.update that would otherwise result in a record with a duplicated primary key? The exception generated seems to be OleDbException which isn't a very specific exception to trap, since it
|
| Any way to edit related columns in the datagrid? | 11 Oct 2004 12:26 GMT | 9 |
I have two tables set up in a parent-child relationship that I display in the datagrid. I can edit and update the child data columns directly in the grid -- but not the parent data, as those parent columns are read-only. Private Sub FillGrid()
|
| Please Enter MS JET OLE DB Initialization information | 11 Oct 2004 10:49 GMT | 5 |
Please Enter MS JET OLE DB Initialization information I tried to create an oledb DataAdapter today. As usual it asked me to choose a database. I did. Then for the first time when I clicked next a second form came on the screen.
|
| For Loop | 11 Oct 2004 09:48 GMT | 3 |
hey guys, for so long i've been using the Server Explorer to make the connection, config the adapter and the dataset (just like i was taught in school), but that's not really the real world. so, i started doing this all in code, which is great. but, it means that the table, columns ...
|
| Access DataAdapter exception | 11 Oct 2004 09:30 GMT | 1 |
I've moved some code for updating an Access database from an old project (no longer to hand unfortunately) to a new one and keep getting an 'Update requires a valid InsertCommand when passed DataRow collection with new rows'.
|
| Handling rowerrors and deleted rows | 11 Oct 2004 05:37 GMT | 11 |
I have to warn that I am a .Net novice and in fact don't use ADO.NET in the "traditional" way but via access to a Progress (www.progress.com) AppServer via proxies that they allow you to build. I have been playing with creating a program where I get data into a dataset
|
| speed question | 11 Oct 2004 02:42 GMT | 12 |
I have table with 5 columns. ID (int) and "Name, LastName, FatherName, Phone" as text field. In that table I have 200000 records. Also I have view with statement Select (Name + LastName + FatherName + Phone) as Search
|
| Handling column names with parenthesis... | 10 Oct 2004 19:43 GMT | 7 |
I am parsing column names from text files and building CREATE TABLE and INSERT statements at run-time using these names. I have no control over the data written to the text files. When building my SQL statements, I bracket all column names (e.g. "[" + name + "]"). However, this ...
|
| IDataReader.Close() | 10 Oct 2004 04:37 GMT | 1 |
Does calling IDataReader.Close() close the DataBase Connection? Thanks!
|