| Thread | Last Post | Replies |
|
| expression for a instantiation a DataColumnobject | 31 May 2004 23:30 GMT | 1 |
i not unterstand the expression {oColPk}, see Row 18. What do have the braces with the instantiation a DataColumnobject?
1 Private Sub Test()
|
| DBConcurrencyException (without Concurrency Problems ?) | 31 May 2004 20:22 GMT | 1 |
I am experimenting with ADO.NET I use MySQL 3.23 with MyODBC 3.51 At the moment I simply try an insert a select and an update. I use the usual DataSet approach. The select works and retrieves the data from the
|
| Delete Record Question | 31 May 2004 20:03 GMT | 1 |
I have a SQLDataAdapter created with the wizard and having all of the commands including the DeleteCommand - I used the defaults. To delete a record, this works just fine: myDA.SelectCommand.Parameters("@mykey").Value = mykey
|
| very novice Find Button | 31 May 2004 19:31 GMT | 3 |
I have a DataForm bound to a dataSet "dsPhoneBook". I want to have a button "btnFind"on my form open a input box where I can enter a name and the record be set to the name I entered into the input box. I can not figure out how to do this. Need Help!
|
| Dynamically determining C# data types from empty Database tables | 31 May 2004 16:01 GMT | 2 |
I have sucessfully used Reader.GetSchemaTable() to dynamically discover C# types from populated database tables. However, I need to determine the C# data type for the columns of empty tables in order to populate them. I have attempted to use GetOleDbSchemaTable(OleDbSchemaGuid ...
|
| data access layer function call | 31 May 2004 16:00 GMT | 1 |
Hi. I have the following requirement and I don't know which way I should approach it In a 3 tier application, the business layer calls a function in the data access layer; the data access layer function opens an Oracle connection, execute an "ExecuteScalar" instruction, closes the ...
|
| unspecified error when using access | 31 May 2004 14:37 GMT | 4 |
i have and asp.net application that uses an access database i use dbcom for database application for ex Imports Syste Imports System.Dat
|
| Populating disconnected ADODB.Recordset with System.Data.DataTable data. | 31 May 2004 14:32 GMT | 4 |
I need to support a VB6 application that will be receiving disconnected ADODB.Recordset from out DotNet solution. Our dotnet solution deals with System.Data.DataTable. I need to populate a disconnected ADODB.Recordset from System.Data.DataTable data. Below
|
| Expression columns and DevisionByZero | 31 May 2004 10:28 GMT | 10 |
I'm adding a DataColumn to my DataTable with a given expression: "column1/column2". But sometimes it occurs that in some rows, value of column2 is 0. Then while adding my expression column, program throws DivisionByZeroException.
|
| DataColumn | 31 May 2004 09:09 GMT | 1 |
can i get information regarding precision and scale from datacolumn, without using adapter regards, and thanks in advance seril
|
| INSERT INTO fails for SqlDbType.Text | 31 May 2004 07:24 GMT | 1 |
I want to inser a Text string as a BLOB When I try to insert a series of records I get the following problem -- System.Data.SqlClient.SqlException: String or binary data would be truncated My table has three nvarchar 50 columns, (MessageId, PutDate, MsgType
|
| avoiding temp table creation | 31 May 2004 06:40 GMT | 5 |
I'm migrating a legacy, reporting-type application (ODBC) to use ADO.NET in order to facilaite ASP.NET delivery. The problem I have is that some of the reports this old app runs relies heavily on creating temporary tables to hold intermediate results of complex select expressions. ...
|
| Problems using HasRows | 31 May 2004 03:11 GMT | 1 |
I am using VS.NET 2003. I have a function that runs a procedure and returns a SqlDataReader: Public Overloads Function RunProcedure(ByVal StoredProcName As String, _
|
| Execute SQL sentence | 31 May 2004 02:48 GMT | 3 |
How Can I execute a SQL Sentence from ADO.NET? Thanks!
|
| Updating field with single/double quotes | 31 May 2004 00:25 GMT | 6 |
I have a memo field in my Access database that is called HtmlText. I have a text box in my ASP.NET application that I fill with HTML. The HTML has both single and double quotes throughout the HTML. I tried to run an UPDATE query to update the db but it fails. I think it's
|