Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!

Question list filters

Filter by
Sorted by
Tagged with
Filter by Employee ID
Score of 4
4 answers
187 views

I created liquibase script to run a mariadb function. the script was running without any issue in mariadb 10.6 (SIT) however, when I run it in another server ( UAT ) that has been migrated to 11.8.3 ...
Advice
0 votes
2 replies
84 views

So, I have four devices running WordPress, with their DBs synced using Galera over Tailscale, but I wanted to know if there's a way to add a fifth DB-only node that participates in voting but doesn't ...
Score of -1
1 answer
130 views

I'm trying to make a website and part of that is having tags much like this site has. I'm trying this: def index(request): storylist = Story.objects.order_by("id") tagslist = [] ...
Best practices
0 votes
1 replies
75 views

I’m currently working on an ERP project at Göhltec and I’d like to get some input from the community regarding architecture and best practices. **Stack we’re using** Backend: Symfony (API-first ...
Score of 1
2 answers
157 views

I have two tables table testlist20230519_20 cdrid starttime endtime 641EA5F600041BC4 1684425611.337 1684425619.687 641EA5F600041BC5 1684425612 1684425618 641EA5F600041BC6 1684425610.082 1684425617.436 ...
Advice
1 vote
5 replies
175 views

I am building a basic REST API using Express and the mariadb connector. My GET route works perfectly and returns the data from the database, but I am struggling with the POST route. Every time I try ...
user avatar
Score of -1
1 answer
88 views

I am trying to figure out why FROM_UNIXTIME(0) returns NULL instead of 1970-01-01 00:00:00. I am running the following inside MariaDB: SELECT FROM_UNIXTIME(0); My sql_mode is NO_ENGINE_SUBSTITUTION. I ...
Advice
1 vote
3 replies
92 views

I have a MariaDB 11.8.6 database with 142 tables. Most tables have two additional columns: validFrom DATETIME(3) - tracks when the record was created. validUntil DATETIME(3) - tracks when the record ...
Score of 0
1 answer
123 views

I’ve installed MariaDB (11.4.9) next to MYSQL (5.7) in wamp (3.4) as the new relational database engine to test my applications. I had an issue with the connection ports. As MySQL uses port 3306, my ...
Best practices
2 votes
7 replies
158 views

I've searched for this answer a dozen different ways and found answers that dance around the answer that I am interested in. Concerning blob data in MariaDb or MySQL - I want to store an arbitrary ...
Score of 5
1 answer
155 views

I'm trying to import a CSV file to a MariaDB table using this query: load data local infile 'C:\\Users\\Kevin\\Downloads\\TCGToday.csv' into table tcgtoday fields terminated by ',' optionally enclosed ...
Advice
0 votes
3 replies
199 views

services: wiki: image: mediawiki container_name: --- restart: always ports: - 8080:80 volumes: - images:/var/www/html/images mariadb: image: mariadb ...
Score of 4
1 answer
103 views

I'm trying to create a program that connects to a MariaDB server. The code works perfectly if I use the library that comes with the server, but when I use the updated version compiled from the MariaDB ...
Score of -2
1 answer
111 views

I created the following dynamic query to get some information from my Olympic table: DROP TEMPORARY TABLE IF EXISTS temp_min_year; CREATE TEMPORARY TABLE temp_min_year AS SELECT Sport, Event, Gender, ...
Score of 3
2 answers
174 views

I have a table with a column 'requested_lang' and 'origin_lang'. requested_lang origin_lang English Dutch NULL Dutch English English NULL Dutch NULL English Dutch English Currently I am counting the ...

15 30 50 per page
1
2 3 4 5
…
974