C# is a general-purpose, managed, garbage-collected, object-oriented programming language created by Microsoft.
1
vote
1answer
27 views
Get all the database in db2 through web
I would like to get all the databases available on a db2 instance from a C# application.
The CLP command to be used is LIST DB DIRECTORY.
How can I fire this command from C#? Is there another select ...
2
votes
0answers
119 views
Strugling with updating a cassandra row in FluentCassandra
I have this problem with using Fluent Cassandra in a test application. All I want to do is set the IsOnline field to true inside the SignIn method, but I keep getting the exception supercolumn ...
2
votes
0answers
158 views
going from heirarchical XML to heirarchical SQL tables then SQL to c# objects to go to user view, how should I store the data in the databases?
Hi I'm getting my data from a web service using their getData call and it comes in as fairly chunky heirarchical XML, first everything all at once, like
<allData>
<product1>
...
1
vote
0answers
91 views
Remote connection to PostgresSQL in Windows 2008 Server is prompting the error below
The error:
"Unable to read data from the transport connection. an existing connection was forcibly
closed by the remote host."
The conditions:
1) I have the following connection string:
...
1
vote
0answers
148 views
Oracle server session terminated by fatal error
I have an Oracle server running on Windows Server.
When an INSERT statement runs I receive an Oracle Ora-00603 error.
The insert statement just tries to insert a BLOB into a table. I searched the ...
1
vote
0answers
265 views
Can the service-broker cause SQL Server to crash when using SQLDependency
I have C# application that uses SQLDependency to get updates from a message table. I have tested it quite extensively and worked great in the development environment but when I ran it on the ...
0
votes
0answers
39 views
ODBC--connection to 'SQL Server' failed
I am importing data from SQL server to MsAccess via query
Insert INTO labels (linkage_index,label_name_index,label_value_index,label_line_number,extended_label)
select ...
0
votes
0answers
239 views
c#.net Datable to oracle table update
I would like use a datatable of undetermined number of rows from a c#.net app to replace all rows in an existing oracle table. Basically the functionality I am going for is an edit, save function for ...