this post was submitted on 27 Dec 2023
530 points (96.8% liked)

Programmer Humor

24709 readers
326 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
top 50 comments
sorted by: hot top controversial new old
[โ€“] Witchfire@lemmy.world 146 points 2 years ago* (last edited 2 years ago) (3 children)

Honestly more readable than a lot of SQL I've read. It even has hierarchical grouping.

[โ€“] somePotato@sh.itjust.works 53 points 2 years ago* (last edited 2 years ago) (2 children)

I was disgusted by the XML at first, but it's a readable query returning a sane JSON object.

Meanwhile, I'm mantaining Java code where the SQL is a perfectly square wall of text, and some insane mofo decided the way to read the resulting list of Object[] ๐Ÿคฎ is getting each column by index... so I'd switch to SQXMLL in a heartbeat.

[โ€“] cmdrkeen@programming.dev 23 points 2 years ago

React basically figured out how to make XML work.

Remember, XML was actually designed for use cases like this, thatโ€™s why it came with XPath and XSLT, which let you make it executable in a sense by performing arbitrary transformations on an XML tree.

Back in the day, at my first coding job, we had an entire program that had a massive data model encoded in XML, and we used a bunch of XSL to programmatically convert that into Java objects, SQL queries, and HTML forms. Actually worked fairly well, except of course that XSL was an awful language to do that all in.

React simply figured out how to use JavaScript as the transformation language instead.

[โ€“] blackbrook@mander.xyz 3 points 2 years ago (1 children)
[โ€“] shotgun_crab@lemmy.world 6 points 2 years ago

JOOQ made me realize that most ORMs suck

[โ€“] reimufumo@lemmy.ca 4 points 2 years ago (1 children)

true, but having it look like a component might get annoying. since this is likely to stay at the top, having an island of non components between two components might make it hard to see where functions start and end. and if this isn't used directly inside a component it'll just look dumb and inefficient (this also looks like it'll take way more to edit once you change something)

[โ€“] bahbah23@lemmy.world 2 points 2 years ago* (last edited 2 years ago) (1 children)

I think I agree with you both. I'm not a Node developer; could you keep your SQL objects/components in a separate file so that they don't clutter up other logic?

load more comments (1 replies)
load more comments (1 replies)
[โ€“] cmdrkeen@programming.dev 78 points 2 years ago (1 children)

Honestly not the worst thing Iโ€™ve seen.

[โ€“] xmunk@sh.itjust.works 13 points 2 years ago (2 children)

I'd like you to think for a moment about CTEs, the HAVING clause, window functions and every other funky and useful thing you can do in SQL ... Now just think, do you think that this syntax supports all those correctly?

[โ€“] cmdrkeen@programming.dev 14 points 2 years ago

Probably no better or worse than any other ORM written in a more traditional language. Worst comes to worst, you can always escape to plain SQL.

load more comments (1 replies)
[โ€“] RustyNova@lemmy.world 41 points 2 years ago

Ah yes. That's what the kids call "sqlx" right?

NGL, if it has real time code completion and compile time SQL checks, this is fine.

[โ€“] akash_rawal@lemmy.world 39 points 2 years ago (2 children)

I actually like this. This would allow reuse of all the infrastructure we have around XML. No more SQL injection and dealing with query parameters? Sign me up!

[โ€“] CanadaPlus@futurology.today 8 points 2 years ago

Assuming it's built well. As someone else pointed out, it doesn't look quite right here.

[โ€“] utopianfiat@lemmy.world 5 points 2 years ago (3 children)

So you mean like parameterized queries, which exist?

load more comments (3 replies)
[โ€“] gravitas_deficiency@sh.itjust.works 38 points 2 years ago (1 children)

I want to hate this. I really do. But the problem isโ€ฆ I think I like it.

[โ€“] naonintendois@programming.dev 11 points 2 years ago (2 children)

But how do I know if the WHERE clause is AND or OR?

[โ€“] akash_rawal@lemmy.world 5 points 2 years ago (1 children)

We can say default is and and add an Or node for or. Similar to SoP notation, you only write +.

load more comments (1 replies)
[โ€“] gravitas_deficiency@sh.itjust.works 3 points 2 years ago* (last edited 2 years ago)

Fair. The constraint nodes should probably exist under an And or Or node.

[โ€“] expr@programming.dev 36 points 2 years ago (1 children)

Not only is this really gross, it's also straight up wrong. It's missing a from clause, and it makes no sense for a where clause to be nested under the select. The select list selects columns from rows that have already been filtered by the where clause. Same for the limit.

Also just gonna go ahead and assume the JSX parser will happily allow SQL injection attacks...

[โ€“] CanadaPlus@futurology.today 4 points 2 years ago (1 children)

I like the format, though.

[โ€“] ReluctantMuskrat@lemmy.world 2 points 2 years ago (1 children)

Clearly you've not had to write and maintain much XML.

[โ€“] CanadaPlus@futurology.today 4 points 2 years ago

I have not. I just thought it looks less goofy than a nested SQL statement split over multiple lines.

What are the issues with XML?

[โ€“] namelivia@lemmy.world 31 points 2 years ago* (last edited 2 years ago)

When you are assigned to write database queries at work and your academical background is that online react bootcamp

[โ€“] mvirts@lemmy.world 26 points 2 years ago (1 children)

Remember kids, JSX is just function calls. It can't hurt you.

[โ€“] Thcdenton@lemmy.world 17 points 2 years ago

Oh it can and it did.

[โ€“] cupcakezealot@lemmy.blahaj.zone 19 points 2 years ago (1 children)

please kindly send all javascript into the sun and explode it

[โ€“] db2@lemmy.world 3 points 2 years ago (1 children)

That's XML though.. not that I'm disagreeing.

[โ€“] huginn@feddit.it 25 points 2 years ago (3 children)

Not XML. JSX. It's javascript's answer to markup.

[โ€“] db2@lemmy.world 9 points 2 years ago (1 children)
[โ€“] dukk@programming.dev 8 points 2 years ago (1 children)

The worst of both worldsโ€ฆ

load more comments (1 replies)
load more comments (2 replies)
[โ€“] JoYo@lemmy.ml 14 points 2 years ago

still more readable than sqlalchemy exceptions

[โ€“] normalexit@lemmy.world 13 points 2 years ago (3 children)

This idea is bad and whoever came up with it should feel bad.

load more comments (3 replies)

Omg that's terrible! Link?

[โ€“] Thcdenton@lemmy.world 12 points 2 years ago
[โ€“] adhocfungus@midwest.social 12 points 2 years ago
[โ€“] mlg@lemmy.world 12 points 2 years ago

"HTTP and the Web is a totally reliable and easy to use internet protocol"

[โ€“] istoff@lemmy.world 6 points 2 years ago (1 children)

Is that select * ?

I expect it looks more cumbersome with joins and multiple columns from different tables.

[โ€“] adamth0@lemmy.world 3 points 2 years ago

That's what I was wondering. It's doing a SELECT, but not saying exactly which columns it wants to retrieve.

[โ€“] httpjames@sh.itjust.works 4 points 2 years ago

Joins must be a pain in the ass with hooks

[โ€“] SaltyIceteaMaker@iusearchlinux.fyi 4 points 2 years ago (4 children)

got no clue abot sql. what is wrong and how is it supposed to look like?

[โ€“] Daxtron2@startrek.website 17 points 2 years ago

this basically xml being made to look like SQL. It's gross and that's why it's funny

[โ€“] traches@sh.itjust.works 7 points 2 years ago (1 children)

SQL is run on the server to communicate with a database. The screenshot is jsx, which is a front-end, UI templating language. Writing SQL this way is cursed

[โ€“] SirQuackTheDuck@lemmy.world 2 points 2 years ago (1 children)

It could be querying the in-browser database (that's commonly used, such as with WhatsApp web), which would be seeded by a different part of the application

[โ€“] utopianfiat@lemmy.world 5 points 2 years ago

Except that's still a SQL dialect, not JSX. There's no need to make this JSX.

SQL is supposed to look like this: SELECT status, name FROM some_table LIMIT 5

[โ€“] ILikeBoobies@lemmy.ca 3 points 2 years ago* (last edited 2 years ago)

Different language

[โ€“] Reptorian@programming.dev 3 points 2 years ago

I kind of like it. I can understand where it start and end.

Sharepoint queries are written in something very similar ๐Ÿคข

I still have nightmares from the one time I had to use that.

load more comments
view more: next โ€บ