List all Postgre SQL Databases in C# [closed] - c#

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm trying to write a code in C# which lists all the Database in a specific IP Address but I don't know where to start. Please help!!!

I think I got the answer. I just need to open the postgres database which is created by default when you create a database instance and do this query.
SELECT datname FROM pg_database
WHERE datistemplate = false;

Related

C# Webservice to copy datas from one DB to Another [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I need to make a webservice that take three arguments(DataTable dt, string connectionString, string table) to integrate the datas in dt to the given database.[table], but not the same schema.
How can I sort this out please?
if an employee's datas changed in HR database automatically FD system
must notified to refresh his database
Consider looking at SQL Server Replication (or) AlwaysOn feature for this same purpose. Specifically you should look at Transactional Replication

Asternet AMI Send Command c# [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Please tell me how to send commands (e.g.: sip show peers) via asternet (c#). Any help or link will be highly appreciated.
Like:
AsterNET.Manager.Response.ManagerResponse response = SendAction("sip show peers");
"sip show peers" is COMMAND.
You have send action COMMAND.
https://wiki.asterisk.org/wiki/display/AST/Asterisk+11+ManagerAction_Command

Import data from a textbox in excel in C# [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have a excel files that contain textboxes and I need to import the data from those boxes. Any ideas on how to accomplish that?
This has actually been addressed on this site before, and rather well. Check it out here: How to read data of an Excel file using C#?

How to construct family tree using asp.net c# and SQL server? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have a database schema. How do I construct a family tree using asp.NET, C# and SQL server? Also, how can I show you the database schema?
I suggest you take a look at Family Show, a WPF application which enables you to view and/or edit a family tree. I think that with some tweaking you will be able to make it work against SQL Server using your database schema.

Making a back up of database while my application set up [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
i have build up a application in c# for my client.During the testing of the application the client inserts data for testing and whenever i reinstall the updated software the data inserted by the client is replaced by new database.so how can i not replace that database.
everytime you install the application,you can backup the data into file,and then restore it.

Categories

Resources