-
Notifications
You must be signed in to change notification settings - Fork 63
Documentation(872737)PostgreSQL DataBinding #4078
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: hotfix/hotfix-v24.2.3
Are you sure you want to change the base?
Documentation(872737)PostgreSQL DataBinding #4078
Conversation
Build Status: INQUEUE 🕒 |
Build Status: INPROGRESS 🔃 |
CI Status: FAILURE ❌ |
Build Status: INQUEUE 🕒 |
Build Status: INPROGRESS 🔃 |
CI Status: SUCCESS ✅ |
string ConnectionString = @"<Enter a valid connection string>"; | ||
string QueryStr = "SELECT * FROM public.\"Orders\" ORDER BY \"OrderID\""; | ||
NpgsqlConnection sqlConnection = new(ConnectionString); | ||
sqlConnection.Open(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
variable name must be in proper casing and meaningfull name
// Create Npgsql Connection | ||
NpgsqlConnection sqlConnection = new(ConnectionString); | ||
sqlConnection.Open(); | ||
// Using NpgsqlDataAdapter and Query create connection with the database |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
comments are duplicate
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changes are fine add the github sample link and merge this PR. Is the fig images are added in the topic ensured that
Documentation(872737)PostgreSQL DataBinding