all groups > dotnet ado.net > september 2003 > threads for tuesday september 16
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
Two DataGrids on One Form? Could be simple solution, but I can't findcontrol !!!
Posted by ssoss at 9/16/2003 9:32:35 PM
I have the something like the following data structure:
Users
users_ID, orgs_ID, users_email, users_password, etc.
Orgs
orgs_ID, orgs_name, orgs_description, etc.
I have a single form with two datagrids.
I have loaded one dataset with two tables.
There is only a single record at an... more >>
Reading output parameter from stored procedure......
Posted by Gish Smith at 9/16/2003 9:00:35 PM
In my ADO.Net coding I am using SQLCommand and SQLParameter to run stored
procedure. Can any one advice me how to read the output parameter from a
stored procedure. I am using SQL Server 2000.
Gish Smith
... more >>
COM+ vs ADO.NET
Posted by Justin at 9/16/2003 7:24:06 PM
I am a newbie in .NET, I am trying to implement Database access components
which need to handle transaction management and concurrency control. I have
been seeing that the COM+ provides functionalities on transaction
management, but is the difference between the COM+ transactions and the
transa... more >>
how can export datatable to excel
Posted by Win at 9/16/2003 6:39:13 PM
how can export datatable to excel
i try to use new excel application then fill data to excel
but it very slow
how can i to do export datatable to excel fast
thanks
... more >>
dataset.haschanges=false allthough change have been made
Posted by Christoph Begrner at 9/16/2003 3:41:22 PM
I have the following problem:
I have a dataset with one table. I bind the fields of the table to several
entities like textboxes etc.
Now I change the values of a row of the table through the textboxes.
The value in the table of my dataset has changed (I checked it) but my
dataset still h... more >>
Filling a DataSet from a sql query against a XML schema
Posted by monorom NO[at]SPAM wanadoo.fr at 9/16/2003 2:54:40 PM
Hi
I'd like to know if it's possible, with an OleDbProvider, to fill a
dataset from a sql squery against a XML schema.
For exemple, i have this OleDbCommand :
SELECT computer.name, processor.frequency, soundCard.model
FROM computer
INNER JOIN processor ON computer.processor_id = proces... more >>
Trouble clearing SqlParameters from my Command object
Posted by Elliot M. Rodriguez at 9/16/2003 2:12:42 PM
(note - sorry for the crosspost - I sent to .vb thinking i was sending to
..adonet).
I implemented a very small, basic data access layer for my web application.
It works just fine, except for this one bug.
One of my methods returns an abstracted dataset. To accomodate X number of
input para... more >>
dataAdapter'rs command statements
Posted by medhanush NO[at]SPAM yahoo.com at 9/16/2003 1:12:25 PM
Do I need to fill all the 3 commands ( InsertCommand, DeleteCommand
and UpdateCommand), even though I'm using only one of them ?
Like if I wants to update records in db, I'm sure that I have to
assign the UpdateCommand, in this scenario, do I need to assign the
Insert and Delete statements also ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
SQL String Connecting to MS Access via ADO
Posted by Mike Fellows at 9/16/2003 12:51:22 PM
I have an SQL string that im trying to use to connect to an Access DB
im currently using the following string:
SQLStr = "SELECT
LEFT(LTRIM(RTRIM(Personal.postcode)),LEN(personal.postcode)-1) AS Expr1,
LiveTracker.ID, LiveTracker.MortgageAppSubmitted, Closed.ID FROM ((Personal
INNER JOIN Pen... more >>
Connection Pools
Posted by William Reyes at 9/16/2003 11:56:27 AM
I have an app that I have recently been testing to try an determine the
cause of this Timeout Expired issue. I am using the performance monitor to
check the # of connection pools as well as the # number of pooled
connections. When I start the app and the user logs in a pool & connection
is creat... more >>
SqlDataReader recordsaffected
Posted by Chris Leffer at 9/16/2003 11:24:16 AM
Hi.
Just reading about the sqldatareader object I am confused about the
recordsaffected property.
The example on the help docs use a procedure with some inserts and a
select. Can I use a datareader object to run sql commands that does not
return records? What is the advantage of using a
da... more >>
OleDbConnection.Open very slow on ASP.NET App running under XP???
Posted by Jason Pritchard at 9/16/2003 11:23:53 AM
Does anybody know why when connecting to an Oracle database from a ASP.NET
web app running under Windows XP, the connection is very slow. It takes
about 2 minutes to open the database connection. The same code running on a
NT2000 machine executes in under 4 seconds.
To test this, is very simpl... more >>
SqlDataAdatper Bug?
Posted by Brian Korenaga at 9/16/2003 10:57:08 AM
I am new to .Net but have been unable to find anything about this in
the newsgroups.
Using C# and the following SQL stored procedure in my SqlDataAdapter:
CREATE PROCEDURE HouseholdNextPrevious
@PassedName varchar(150),
@Direction varchar(4)
AS
Set NoCount on
if @Direction = 'down' /* ne... more >>
DataTable schema changes
Posted by thomas_w_brown NO[at]SPAM countrywide.com at 9/16/2003 8:52:11 AM
I need to handle dynamic changes to a table's schema, even when there
is already data present. It appears that the only thing supported by
DataTable is to remove a column so I am pulling all the data out into
a 2D array, performing my manipulations on the raw data, and then
clearing out the tab... more >>
difference between output and returnValue sqlParameter ?
Posted by bob75001 NO[at]SPAM hotmail.com at 9/16/2003 4:49:25 AM
Hello !
Can someone please explain to me what the difference between "output"
and "returnValue" as direction for sqlParameter in a stored Procedure
?
Thanks,
Lanz... more >>
DataRow Position
Posted by stefan at 9/16/2003 3:56:31 AM
How can I find the DataRow position into the
DataRowCollection when I have got the DataRow object
after a call to DataTable.Find or Select (C#)
Thanks... more >>
param array and stored procedure call
Posted by M at 9/16/2003 2:10:30 AM
Is there any way to modify the following code so I can run it with any
number of paramNames as well as any number of paramValues? So far it
works with an array of paramValues, but since you can only pass a
variable number of parameters in the last parameter of a method, I'm
stumped.
Perh... more >>
|