Generate PDF Mark sheet of students using data from SQLite or MySQL table using Python Reportlab

แชร์
ฝัง
  • เผยแพร่เมื่อ 11 ก.ย. 2024

ความคิดเห็น • 12

  • @ali-mw8nf
    @ali-mw8nf 2 ปีที่แล้ว

    Thank you very much for making this video on our request. before trying the code I wanted to thank you. It's so kind of you.

    • @plus2net1
      @plus2net1  2 ปีที่แล้ว

      You're welcome!

  • @jaweedshareef2038
    @jaweedshareef2038 11 หลายเดือนก่อน

    Excellent Tutorial, Thank you very much for making this video, Sir I have a query, I am trying to highlight a row by double clicking on it in treeview, it should keep highlighted and add additional fields if I add any. I have seen your video on Treeview highlight but thats on condition based, based on marks acquired by the students, can you please send the link if you have already made any video as per my request.

    • @plus2net1
      @plus2net1  11 หลายเดือนก่อน

      www.plus2net.com/python/tkinter-mysql-update.php
      Using Product table
      www.plus2net.com/python/tkinter-restaurant-update.php
      You can select any record by clicking on it, then details can be edited and updated.

  • @chinmayr1883
    @chinmayr1883 ปีที่แล้ว

    Hello sir, how to add one more page in the pdf file.

    • @plus2net1
      @plus2net1  ปีที่แล้ว

      Based on the number of rows , pages can be added. This program will add additional pages, headers footers can be created which will be integrated to each page. Check here.
      www.plus2net.com/python/pdf-table.php

  • @tazulislam2698
    @tazulislam2698 2 ปีที่แล้ว

    Thanks! Bro create table on this pdf page from database.

    • @plus2net1
      @plus2net1  2 ปีที่แล้ว +1

      thanks for the idea, we will add that after invoice generation.

  • @slobodanmilic1331
    @slobodanmilic1331 2 ปีที่แล้ว

    More details for 'sqlite: ///'

    • @plus2net1
      @plus2net1  2 ปีที่แล้ว

      That is used for creating SQLite connection string, As it is a file based database so file location - address is required to connect.

    • @slobodanmilic1331
      @slobodanmilic1331 2 ปีที่แล้ว

      @@plus2net1
      Thank you for kind answer.
      Sqlite3 connecting string in our case is: 'C:\Users\Public\DesktopD:\Python\sqlite3_projects\Std_info\std.db'
      Follow it, but python throw error: "Could not parse rfc1738 URL from string '%s'" % name
      sqlalchemy.exc.ArgumentError: Could not parse rfc1738 URL from string 'C:\Users\Public\DesktopD:\Python\sqlite3_projects\Std_info\std.db'
      It is interesting to see how looks connecting string (path) in case presented on video.
      Regards
      Slobodan

    • @plus2net1
      @plus2net1  2 ปีที่แล้ว

      @@slobodanmilic1331 I think you are passing some parameter in your query ? Then in place of %s use ? .
      For checking the connection string , stop using any parameter in query and run one simple select query. If it works then there is no issue with your connection string.
      How you have D drive after your Desktop ? Just check your connection string.