Pawel Pabian

Results 24 comments of Pawel Pabian

Thank you for such fast and detailed response. Yes, my point was to provide slim base installation as an option, not to dump whole bundled ecosystem and maintain interpreter alone....

https://github.com/raku-community-modules/DBIish/blob/main/lib/DBDish/mysql/StatementHandle.rakumod#L119 This logic is not valid, int64 has one bit less and cannot store maximum unsigned value. I'm not sure what is the best fix without performance penalty: ```raku when...

Thanks for explanation. I think reasonable compromise would be to remove access to other connections on high API level - for example by making this hash private. This would also...

> Hm, .parent and %.Connection probably should not be public outside DBIish Indeed. As @moritz explained we will never get complete memory isolation between 2 connections but at least foreign...

Linguistic stunts were the the thing that caught my attention waaaaaaaaay back when I was learning Perl. And I like those blesses, chomps, "manipulexity and whipuptitude", Cools, sinks... * They...

Easier way to see what server gets is to do ```perl6 my $sth = $dbh.prepare('CREATE TABLE tmp_test AS SELECT ?'); $sth.execute(2.0); ``` Table indeed has string-y column ``` mysql> show...

It's not about returned valued being strings. The issue is that about incorrect passing Num values from DBIish to server.

I installed SDDM on Dell Mini 10v (Intel GMA945 + Atom 270) on bare Arch 32bit distro. Text entering was very laggy, after typing password character dot in text field...

There are substantial errors in your request. It is not possible to declare private subroutines, only private methods are allowed: ``` $ perl6 -e 'class A { sub !foo {...

I think this needs proper solution. Current one is doing wrong typization for **HALF** of available range based on very risky assumption. Yes, most autoincremented IDs are small. But bigints...