Thank you! I had always read one should use prepared statements because they are more secure but I never saw HOW they were more secure explained so neatly.
@Luc1an_2 жыл бұрын
Hello, can you make a tutorial on how to make async Api calls in background using any web framework of Python?
@lawrencedoliveiro91042 жыл бұрын
I prefer to use APSW rather than the standard SQLite3 module that comes with Python. Also, here is a handy generator function I like to use, that performs a query and lets you iterate over the returned rows, putting them through an optional mapping function (e.g. turning the row tuple into a dict mapping field names to values) before returning them: def db_iter(conn, cmd, values = None, mapfn = lambda x : x) : for item in conn.cursor().execute(cmd, values) : yield mapfn(item) ♯end for ♯end db_iter
@HideBuz8 ай бұрын
Your content is always top notch! Thanks!
@alexzakr8 ай бұрын
Thanks for the simple explanation! It's really valuable!
@Mullheimer Жыл бұрын
Wow, crazy speed and well explained. Thx
@mehmetaliertorer58192 жыл бұрын
Can you do a video about password authentication from the database but with hash encryptions
@walkaisa9933 Жыл бұрын
What’s the name of the sql syntax highlighting extension?
@ayushpurohit8266 Жыл бұрын
Does it work for python/mysql connector? Also, how is this different from f-string or .format()?
@RuneFToftlund8 ай бұрын
great, excellent video. Maybe just slow down when executing and swapping window. Otherwise great.
@vivekan972 жыл бұрын
Great content 💯
@piotrmazgaj2 жыл бұрын
Hi, I have a similar problem but it concerns the tables' name. I need to create many, many tables (each table for separate stock data and stock name is a table name). How can I put into my SQL query table name as variable, but without breaching the sanitation rule?
@jimmynoosetron65182 жыл бұрын
Do the thing where you
@lawrencedoliveiro91042 жыл бұрын
That’s a, shall we say, suboptimal way to do it. Given that the structure of the data is the same for all stocks, have just one table, and add the stock ID as a column to the table.
@Trazynn2 жыл бұрын
I'd love more windows file handling tutorials. Your file renamer was ace.
@Trazynn2 жыл бұрын
Maybe constructing pdf's in bulk but with dynamic content, like giving people a certificate with their name and their score in it or something.
@lawrencedoliveiro91042 жыл бұрын
The Cairo graphics library lets you render graphics calls to different kinds of target surfaces, including PDF, SVG and PostScript files.
@jeekakrishna2 жыл бұрын
it is so usefull for me...i was beggining to learn this database and python connection....Can you direct me some free database hosting solutions for begginers and how to use them ?