vwbusguy, to random
@vwbusguy@mastodon.online avatar

Anyone else remember how company adopting the "Business Source License" for MaxScale made MaxScale and the company super-profitable? No one? Oh yeah, that's because it didn't.

https://www.infoworld.com/article/3693711/after-job-cuts-mariadb-faces-uncertain-financial-future.html

outofcontrol, to random
@outofcontrol@phpc.social avatar

After using TablePlus for around 3 years, is this still a good app to use? Are there newer better alternatives.

It’s renewal time and I’d like to check-in on other apps before upgrading.

Feedback welcome.

jemal, to ubuntu
@jemal@jemal.contact avatar

Does anyone have tips for installing alongside and existing server in 22.04? I am using a bunch of MariaDB exclusive field types and functions for geosearches, but would also like to try out Ghost which requires MySQL.

xahteiwi, to django
@xahteiwi@mastodon.social avatar

Hmmm. In the documentation for its latest release, 's reference doc says that its ORM layer supports 10.4 and up. It also says it supports MySQL 8.0 and up.

MariaDB 10.4 and 8.0 are not guaranteed to be compatible; MariaDB 10.4 and MySQL 5.7 are. Later MariaDB releases make no compatibility guarantees with MySQL.

However, there isn't a separate Django backend for MariaDB; just a "shared" one for MySQL.

This doesn't compute. What am I missing?

https://docs.djangoproject.com/en/4.2/ref/databases/#mariadb-notes

Codeberg, to random
@Codeberg@social.anoxinon.de avatar

Any experts not in the meeting, who want to help us investigate this: https://codeberg.org/Codeberg-Infrastructure/techstack-support/issues/9 ?

irfan, (edited ) to django

Limiting queries doesn't work on with as it would've worked on . I've been looking for a way to work around it since yesterday, as I need the ability to limit querysets, but would love to still offer using MariaDB with it rather than forcing the use of PostgreSQL. I'm surprised I've not seen much discussion of this on SO or Django's docs.

Update: Issued a ticket.

hypolite, to random

Question for the / buffs, I have three tables defined thus:

CREATE TABLE IF NOT EXISTS `user` (
	`uid` mediumint unsigned NOT NULL auto_increment COMMENT 'sequential ID',
	...
	 PRIMARY KEY(`uid`)
);
CREATE TABLE IF NOT EXISTS `gserver` (
	`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
	...
	 PRIMARY KEY(`id`)
);

CREATE TABLE IF NOT EXISTS `user-gserver` (
	`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
	`gsid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Gserver id',
	...
	PRIMARY KEY(`uid`,`gsid`),
	FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
	FOREIGN KEY (`gsid`) REFERENCES `gserver` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
);

Running the last query triggers the error Foreign key constraint is incorrectly formed. Is there no way to reference multiple tables in foreign keys out of a compound primary key?

ChristosArgyrop, to python
@ChristosArgyrop@mstdn.science avatar

Until a truly performant (= fast, low memory footprint) two dimensional storage ("table") type (*) emerges, what are the options for managing big data in ?

  1. DBI into a performant DBMS (/ column store/ )
  2. shell over #R's data.table or 's / data.table packages, use files to get data in and some form of IPC to get data out
  3. , others ?
    (*) this a list of things one could encapsulate as objects for
    https://duckdb.org/2023/04/14/h2oai.html
    @Perl
badrihippo, to random
@badrihippo@fosstodon.org avatar

just broke with 🙁

This means my setup is stuck with the current version for(ever/a while) ⌛

einenlum, to PostgreSQL
@einenlum@fosstodon.org avatar

Do we have any stats or useful insight on the usage of (or ) versus in the world today?

supergarv, to PostgreSQL German
@supergarv@phpc.social avatar

Ich würde gern für SQL-Kompatibilitätstests eine Query auf diversen , , , und evtl Instanzen laufen lassen.

Also bestenfalls(?) pro DB-Typ&Version ein Docker-Image auf eigenem Port. Gern direkt mit initialen DBs&Tabellen aus nem zentralen SQL-Dump. Dann kann ich ein PHP Script damit connecten und iterieren.

Sowas muss doch schonmal jemand gemacht haben und ein docker-compose dafür besitzen, zB für QA/Testing? Finde aber nix.

@isotopp @tim ?

utzer, to admins

11 just arrived on my server, anyone else already on 11.x?

hack13, to random
@hack13@cyberfurz.social avatar

So made some progress on @FurryFediverse last night, updating the Schema to support the new features. I am also moving to database support going forward instead of the we were using just for the speed and more data we put in it. My main goals today are:

  • Build a new landing page
  • Build pages, for instance, browsing
  • Build page, for instance, submission

If I can do that stuff quickly enough, then:

  • Add Searching instances
  • Start User Directory buildout
okpierre, to Software
@okpierre@mastodon.social avatar

Mariadb (the open source MySQL alternative) might be taken over. Deadline for that decision is March 29

UmWerker, to php
@UmWerker@todon.nl avatar

For a dynamic website with a database, is + still the best/most recommended combination, or are there lighter options, such as + DB (json?)?

Happy to boost, thanks 👍

Codeberg, to random
@Codeberg@social.anoxinon.de avatar

This Thursday at 20.00 CEST: Codeberg Contributor Meeting about
at Codeberg.

https://codeberg.codeberg.page/Events/events/2023/07-13-contributor-meeting/

Feel free to join us to learn more about our voluntary contributors, our systems, and potentially how you can get involved.

,

lpwaterhouse, to terraform
@lpwaterhouse@ioc.exchange avatar

Oh dear, seems has decided to finally execute the inevitable bait and switch. The () is a piece of decidedly not- garbage (albeit one with a converts-to-FLOSS sunset clause built in), that I've been eying wearily ever since created it (though not applying it to anything I actually use; that is still ). The only HashiCorp thing I use is ; Here's to hoping someone forks the last free version ASAP.

jay, to web
@jay@mastodon.gamedev.place avatar

❔ Referring to the World Wide Web, do you capitalize the words "Internet" & "Web" when you use them in a sentence?

I was doing research today & noticed the AP Stylebook changed them to non-capitalized words in 2016 (See Wired article: https://www.wired.com/2016/04/ap-finally-realizes-2016-will-let-us-stop-capitalizing-internet). I've been capitalizing these words since the 90's. To me, it seems like they should be proper nouns. What's your take on the subject?

matthew, to debian
@matthew@social.retroedge.tech avatar

Experimenting with web server things today.

Successfully set up a test WordPress website on a ProxMox VM with , , , and

It was a good learning experience and we may use this soon for a client. We may be transferring an older version of a Wordpress website on another host to a ProxMox VM. I haven't done a migration like that before, so we'll see how it goes.

I'm not a big fan of now, but I did use it quite a bit over ten years ago. It's changed a lot since then!

andre, to Pixelfed German
@andre@layer8.space avatar

Zu hülf! Wer kennt sich aus? Ich habe eine Datenbank die gehört zu einer php Anwendung (pixelfed) wie finde ich im code raus wo welche Dinge gespeichert werden (alt text zu Bildern)?
Mein Problem: Der Alt-Text wird nach 191 chars abgeschnitten, und ich vermute die colum in der pasenden table hat einfach das falsche Datenformat und das will ich ändern.

archer72, to random
@archer72@mastodon.sdf.org avatar

MariaDB event in what appears to be FOSDEM. I think this is FOSDEM. Is it concerning when Instagram calls it a fringe event?

Cheatha, to random German
@Cheatha@chaos.social avatar

An die Passagiere von : ihr Zug endet bald! Bitte steigen sie an der nächstmöglichen Station aus, um nicht auf dem Abstellgleis zu laden: https://www.heise.de/news/Unverbindliches-Uebernahmeangebot-fuer-das-Datenbankunternehmen-MariaDB-9632821.html

paulox, (edited ) to django
@paulox@fosstodon.org avatar

Django 5.0 has been released 🎉

After months of work, everyone can use this great new version 🙌

My favorite features are:
• 🤖 generated fields
• ✅ database default values
• 🔑 prefetch related for generic foreign keys

Which are your favorite features?
https://www.djangoproject.com/weblog/2023/dec/04/django-50-released/

alyx, to ghost
@alyx@3615.computer avatar

Thanks to @jemal I learned that MariaDB is not actually officially supported by Ghost: https://forum.ghost.org/t/when-will-mysql-8-be-mandated-which-ver/29228/2

So if you made the same stupid choice as me, look into switching before it becomes an issue.

governa, to ubuntu
@governa@fosstodon.org avatar
  • All
  • Subscribed
  • Moderated
  • Favorites
  • JUstTest
  • rosin
  • thenastyranch
  • cubers
  • ethstaker
  • InstantRegret
  • DreamBathrooms
  • ngwrru68w68
  • magazineikmin
  • everett
  • Youngstown
  • mdbf
  • slotface
  • kavyap
  • anitta
  • GTA5RPClips
  • khanakhh
  • normalnudes
  • osvaldo12
  • cisconetworking
  • provamag3
  • Durango
  • tacticalgear
  • modclub
  • Leos
  • megavids
  • tester
  • lostlight
  • All magazines