[Solved] Oracle database multiple row -> c# [closed]
[ad_1] Let’s brush up your code: // Extract methods, don’t cram everything in OnClick private void FeedFriendsListBox() { string oracleDb = @”connection string”; //DONE: wrap IDisposable into using using (OracleConnection conn = new OracleConnection(oracleDb)) { conn.Open(); //DONE: Make Sql readable – format it out and use names for the parameter(s) string sql = @”SELECT NAME, … Read more