I have a windows form to allow user to authenticate their credentials in a "Sign in Screen" Windows form
OracleConnection conn = new OracleConnection();
conn.ConnectionString = "User Id=" + lblUserID.Text +
";Password=" + txtPassword.Text +
";Data Source=" + "testDatabase;";
try
{
conn.Open();
_cmd = new OracleCommand(sqlBuildString, conn)