Jump to content

Export server-side function under one resource C#


Recommended Posts

Posted

Hello! I want to share a mysql query function under one resource, I have got login.cs and mysql.cs and want to share this function to be able to use in login.cs

public DataTable ExecuteQueryWithResult(string sql)
{
	using (MySqlConnection conn = new MySqlConnection(connStr))
	{
		try
		{
			MySqlCommand cmd = new MySqlCommand(sql, conn);
			conn.Open();
			MySqlDataReader rdr = cmd.ExecuteReader();
			DataTable results = new DataTable();
			results.Load(rdr);
			rdr.Close();
			return results;
		}
		catch (Exception ex)
		{
			NAPI.Util.ConsoleOutput("DATABASE: [ERROR] " + ex.ToString());
			return null;
		}
	}
}

So the question is: How to use this function in other C# files under one resource?

Is there any function like TriggerEvent, etc?

bv0Ne9n.jpg

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...