search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

P粉715274052

P粉715274052

Follow
student

Follow 0
fans 0
integral 0
Alternative for PHP_excel

Is there any alternative for PHP_excel which can "Export to XLSX/XLS" file in a customized format? This is a General Reference question for the php tag

2026-01-30 20:43:12Ask
PHP
Why do people hate SQL cursors so much? [closed]

I can understand wanting to avoid having to use a cursor due to the overhead and inconvenience, but it looks like there's some serious cursor-phobia-mania goi

2026-01-28 09:43:10Ask
MySQL
Oracle: What does `(+)` do in a WHERE clause?

Found the following in an Oracle-based application that we're migrating (generalized): SELECT Table1.Category1, Table1.Category2, count(*) as Total, count(Tab2.Stat)

2026-01-13 12:43:18Ask
MySQL
Python dictionary: are keys() and values() always the same order?

It looks like the lists returned by keys() and values() methods of a dictionary are always a 1-to-1 mapping (assuming the dictionary is not altered between calling the 2 methods). Fo

2026-01-12 08:01:28Ask
Python
C++ floating point precision [duplicate]

Possible Duplicate: Floating point inaccuracy examples double a = 0.3; std::cout.precision(20); std::cout

2025-12-12 22:01:17Ask
C++
Is it possible to grant metadata permissions exclusively in MySQL?

TLDR; Goal: Is it possible to grant a certain "audit" user access to only the MySQL metadata (at least the schema, tables, columns) and not the exact data in the table? Version MySQL8+ tried: Before this question, I have tried or know: Check out the official MySQL documentation about permissions (if I missed an answer there, please let me know) Search keywords on SOF: mysql, privilege, metadata, etc. with me My DBA friend was looking for a solution to grant the user showdatabases permission, but could only get

2024-03-21 20:02:42Ask
MySQL
Swiper autoplay stops if you switch tabs or minimize the browser

I made an autoplay progress for a slider using CSS. When the activity class is added to the pagination, I run a CSS animation that lasts as long as the slider autoplay delay. Everything will work fine if you don't switch browser tabs or minimize the browser. As soon as we switch tabs, the slider autoplay pauses and causes the animation to stop. Maybe someone knows how to affect it? importSwiper,{Navigation,Pagination,Autoplay}from'swiper';consth

2024-02-21 13:37:12Ask
CSS3
Decoding CSS selector priority/specificity

I'd like to understand how CSS selectors handle attribute conflicts. How to select one property over another? div{background-color:red;}div.my_class{background-color:black;}div#my_id{background-color:blue;}bodydiv{background-color:green;}body>div{background-color:orange;

2023-10-19 22:58:19Ask
CSS3
getimagefile() in smarty template works randomly

In the photo gallery template (CMSMS) I use the following code: <ul>{foreachfrom=$imagesitem=image}{$imagesize=getimagesize($image->file)}<li>name:{$image->file} <em>width:</em>{$imagesize[0]}-<em>height:&l

2023-09-11 00:04:59Ask
PHP
MySQL SELECT with GROUP BY one field and ORDER BY another field

Edit 3 - MySQL version is 8.0.33. EDIT 2 - See the final working code at the bottom. Thanks @Akina! I have a score sheet for a sporting event. This table has three related fields that I want to select - scoreID as the primary key value classifierID maps to the primary key of another table that contains details about a specific course layout calculatedPercent is the result of a specific event this table also has my WHERE sub There are three other fields used in the sentence, but these fields are incidental. I need to generate a query for calc

2023-09-10 17:25:20Ask
MySQL