Skip to content
Advertisement

Tag: c#

Parameters in ASP.NET MVC to create a PDF

I have a particular problem, I am working with ASP.NET MVC in C# and SQL Server. The idea is that on the main screen you see a text box and a button, entering a number that brings us our data. By bringing that data, the person can choose whether they want to see if that data in a PDF. But,

How to get names of columns from table (Microsoft SQL Server)?

I need to get names of columns and save them in strings. SQL statement works correctly (I checked it in SQL manager). Answer After exec() use queryTem.next() which retrieves next record in the result until theres any record. And use QVector to store column name. Read more here about QVector.

Member’s books in possession in Library System

Hello I am currently working into a library system and I do want to view how many books are in possession of a specific member. I want to add a copies to student whenever I issue a book to them. I have tried: but it doesn’t insert into members row, instead it shows I have also tried: But doesn’t work

Advertisement