In my ASP.NET application, I have the following MySQL 5 Query:
SELECT I.InvoiceNo, I.InvoiceDate, I.NatTotal, I.StateTotal,
I.NatTotal + I.StateTotal As TotDue, I.NatPaid + I.StatePaid As TotPaid,
I.NatTotal + I.StateTotal - I.NatPaid - I.StatePaid As Due,A.FirstName,
A.LastName, A.City, A.State, A.ID
FROM AlumniInvoices I JOIN Alumni A ON I.AlumniID=A.ID
I have this bound to a DataGrid object. In the columns that use the TotDue,
TotPaid, and Due columns, it displays, "System.Byte[]". Why is this
happening, and how to I fix it?