René's URL Explorer Experiment


Title: named binding is not supported by jasync driver · Issue #425 · jasync-sql/jasync-sql · GitHub

Open Graph Title: named binding is not supported by jasync driver · Issue #425 · jasync-sql/jasync-sql

X Title: named binding is not supported by jasync driver · Issue #425 · jasync-sql/jasync-sql

Description: Hi I am hitting the above error when my program execute to this: import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.data.r2dbc.repository.Query; import org.springframework.data.r2dbc.repository.R2db...

Open Graph Description: Hi I am hitting the above error when my program execute to this: import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.data.r2dbc.repository.Query; import org.sp...

X Description: Hi I am hitting the above error when my program execute to this: import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.data.r2dbc.repository.Query; import org.sp...

Opengraph URL: https://github.com/jasync-sql/jasync-sql/issues/425

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"named binding is not supported by jasync driver","articleBody":"Hi I am hitting the above error when my program execute to this:\r\n```\r\nimport org.springframework.beans.factory.annotation.Qualifier;\r\nimport org.springframework.data.r2dbc.repository.Query;\r\nimport org.springframework.data.r2dbc.repository.R2dbcRepository;\r\nimport reactor.core.publisher.Flux;\r\n\r\n@Qualifier(\"dftConnectionFactory\")\r\npublic interface DTFBillRepo extends R2dbcRepository\u003cBill, BillPk\u003e {\r\n    \r\n    @Query(\"\"\"\r\n        select * from Bill where CAST(Bill_Time AS DATE) = CAST(:targetDate AS DATE)\r\n        \"\"\")\r\n    Flux\u003cBill\u003e findByBillTimeOn(String targetDate);\r\n    \r\n    Flux\u003cBill\u003e findBillByStoreNo(String storeNo);\r\n    \r\n}\r\n\r\n```\r\n\r\nThe Error:\r\n```\r\n2024-09-06T20:34:14.479+08:00 ERROR 32780 --- [evois] [onPool-worker-1] a.w.r.e.AbstractErrorWebExceptionHandler : [eb4d9693-1]  500 Server Error for HTTP POST \"/api/1.0/dtf/bill\"\r\n\r\njava.lang.UnsupportedOperationException: named binding is not supported by jasync driver P0_targetDate=2024-09-05T10:12:35.342\r\n\tat com.github.jasync.r2dbc.mysql.JasyncStatement.bind(JasyncStatement.kt:65) ~[jasync-r2dbc-mysql-2.2.4.jar:na]\r\n\tSuppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException:\r\nError has been observed at the following site(s):\r\n\t*__checkpoint ⇢ Handler com.efixion.evois.dtf.api.DtfController#billTransfer(BillTransferDto) [DispatcherHandler]\r\n\t*__checkpoint ⇢ HTTP POST \"/api/1.0/dtf/bill\" [ExceptionHandlingWebHandler]\r\nOriginal Stack Trace:\r\n\t\tat com.github.jasync.r2dbc.mysql.JasyncStatement.bind(JasyncStatement.kt:65) ~[jasync-r2dbc-mysql-2.2.4.jar:na]\r\n\t\tat org.springframework.r2dbc.core.DefaultDatabaseClient$StatementWrapper.bind(DefaultDatabaseClient.java:581) ~[spring-r2dbc-6.1.12.jar:6.1.12]\r\n\t\tat org.springframework.r2dbc.core.binding.NamedBindMarkers$NamedBindMarker.bind(NamedBindMarkers.java:102) ~[spring-r2dbc-6.1.12.jar:6.1.12]\r\n\t\tat org.springframework.data.r2dbc.core.NamedParameterUtils$ExpandedQuery.bind(NamedParameterUtils.java:534) ~[spring-data-r2dbc-3.3.3.jar:3.3.3]\r\n\t\tat org.springframework.data.r2dbc.core.NamedParameterUtils$ExpandedQuery.bindTo(NamedParameterUtils.java:601) ~[spring-data-r2dbc-3.3.3.jar:3.3.3]\r\n\t\tat org.springframework.data.r2dbc.repository.query.StringBasedR2dbcQuery$ExpandedQuery.bindTo(StringBasedR2dbcQuery.java:219) ~[spring-data-r2dbc-3.3.3.jar:3.3.3]\r\n\t\tat org.springframework.r2dbc.core.DefaultDatabaseClient$DefaultGenericExecuteSpec.lambda$getResultFunction$9(DefaultDatabaseClient.java:394) ~[spring-r2dbc-6.1.12.jar:6.1.12]\r\n\t\tat org.springframework.r2dbc.core.ResultFunction.apply(ResultFunction.java:64) ~[spring-r2dbc-6.1.12.jar:6.1.12]\r\n\t\tat org.springframework.r2dbc.core.DefaultFetchSpec.lambda$all$1(DefaultFetchSpec.java:77) ~[spring-r2dbc-6.1.12.jar:6.1.12]\r\n\t\tat org.springframework.r2dbc.core.DelegateConnectionFunction.apply(DelegateConnectionFunction.java:48) ~[spring-r2dbc-6.1.12.jar:6.1.12]\r\n\t\tat org.springframework.r2dbc.core.DelegateConnectionFunction.apply(DelegateConnectionFunction.java:33) ~[spring-r2dbc-6.1.12.jar:6.1.12]\r\n\t\tat org.springframework.r2dbc.core.DefaultDatabaseClient.lambda$inConnectionMany$6(DefaultDatabaseClient.java:147) ~[spring-r2dbc-6.1.12.jar:6.1.12]\r\n\t\tat reactor.core.publisher.FluxUsingWhen.deriveFluxFromResource(FluxUsingWhen.java:122) ~[reactor-core-3.6.9.jar:3.6.9]\r\n\t\tat reactor.core.publisher.FluxUsingWhen.access$000(FluxUsingWhen.java:53) ~[reactor-core-3.6.9.jar:3.6.9]\r\n\t\tat reactor.core.publisher.FluxUsingWhen$ResourceSubscriber.onNext(FluxUsingWhen.java:195) ~[reactor-core-3.6.9.jar:3.6.9]\r\n\t\tat reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:122) ~[reactor-core-3.6.9.jar:3.6.9]\r\n\t\tat reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onNext(FluxOnErrorResume.java:79) ~[reactor-core-3.6.9.jar:3.6.9]\r\n\t\tat reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onNext(FluxOnErrorResume.java:79) ~[reactor-core-3.6.9.jar:3.6.9]\r\n\t\tat reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:122) ~[reactor-core-3.6.9.jar:3.6.9]\r\n\t\tat reactor.core.publisher.MonoCompletionStage$MonoCompletionStageSubscription.apply(MonoCompletionStage.java:121) ~[reactor-core-3.6.9.jar:3.6.9]\r\n\t\tat reactor.core.publisher.MonoCompletionStage$MonoCompletionStageSubscription.apply(MonoCompletionStage.java:67) ~[reactor-core-3.6.9.jar:3.6.9]\r\n\t\tat java.base/java.util.concurrent.CompletableFuture.uniHandle(CompletableFuture.java:934) ~[na:na]\r\n\t\tat java.base/java.util.concurrent.CompletableFuture$UniHandle.tryFire(CompletableFuture.java:911) ~[na:na]\r\n\t\tat java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[na:na]\r\n\t\tat java.base/java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2179) ~[na:na]\r\n\t\tat com.github.jasync.sql.db.util.FutureUtilsKt.success(FutureUtils.kt:16) ~[jasync-pool-2.2.4.jar:na]\r\n\t\tat com.github.jasync.sql.db.mysql.MySQLConnection.onOk(MySQLConnection.kt:225) ~[jasync-mysql-2.2.4.jar:na]\r\n\t\tat com.github.jasync.sql.db.mysql.codec.MySQLConnectionHandler.channelRead0(MySQLConnectionHandler.kt:124) ~[jasync-mysql-2.2.4.jar:na]\r\n\t\tat io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:99) ~[netty-transport-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444) ~[netty-transport-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) ~[netty-transport-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412) ~[netty-transport-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346) ~[netty-codec-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318) ~[netty-codec-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444) ~[netty-transport-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) ~[netty-transport-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412) ~[netty-transport-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1407) ~[netty-transport-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440) ~[netty-transport-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) ~[netty-transport-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:918) ~[netty-transport-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166) ~[netty-transport-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) ~[netty-transport-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) ~[netty-transport-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) ~[netty-transport-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) ~[netty-transport-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:994) ~[netty-common-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) ~[netty-common-4.1.112.Final.jar:4.1.112.Final]\r\n\t\tat java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na]\r\n```\r\n\r\n\r\n\r\nI am using \r\n```\r\n\u003cparent\u003e\r\n        \u003cgroupId\u003eorg.springframework.boot\u003c/groupId\u003e\r\n        \u003cartifactId\u003espring-boot-starter-parent\u003c/artifactId\u003e\r\n        \u003cversion\u003e3.3.3\u003c/version\u003e\r\n        \u003crelativePath/\u003e \u003c!-- lookup parent from repository --\u003e\r\n \u003c/parent\u003e\r\n \r\n\u003cdependency\u003e\r\n      \u003cgroupId\u003ecom.mysql\u003c/groupId\u003e\r\n      \u003cartifactId\u003emysql-connector-j\u003c/artifactId\u003e\r\n      \u003cscope\u003eruntime\u003c/scope\u003e\r\n  \u003c/dependency\u003e\r\n  \u003cdependency\u003e\r\n      \u003cgroupId\u003ecom.github.jasync-sql\u003c/groupId\u003e\r\n      \u003cartifactId\u003ejasync-r2dbc-mysql\u003c/artifactId\u003e\r\n      \u003cversion\u003e2.2.4\u003c/version\u003e\r\n  \u003c/dependency\u003e\r\n  \r\n```\r\n\r\nDoes anyone know why the name binding is not working ?\r\n\r\nTQIA","author":{"url":"https://github.com/juzweb","@type":"Person","name":"juzweb"},"datePublished":"2024-09-06T12:42:49.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/425/jasync-sql/issues/425"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:aadd4eef-ca45-bf44-e630-1a43cc453f12
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id9EC0:1B4FC7:DDEBB1:11D8724:697E1043
html-safe-nonce452866bf56139c83cf7255b15738e41f93d6c752c5f03f70a2d1e5a6c7209db1
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5RUMwOjFCNEZDNzpEREVCQjE6MTFEODcyNDo2OTdFMTA0MyIsInZpc2l0b3JfaWQiOiI4OTc2MTA3MzA0NDc4NzI2NyIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac878f77767bfd256682e3ad230e2e47decd425c7ecd5bbef0c80cb86cb4dbac8d
hovercard-subject-tagissue:2510348992
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/jasync-sql/jasync-sql/425/issue_layout
twitter:imagehttps://opengraph.githubassets.com/107667033ca4db5e97e2ef5d0b517aa7e4986b0589f23bf1ad5e7c28966c39c3/jasync-sql/jasync-sql/issues/425
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/107667033ca4db5e97e2ef5d0b517aa7e4986b0589f23bf1ad5e7c28966c39c3/jasync-sql/jasync-sql/issues/425
og:image:altHi I am hitting the above error when my program execute to this: import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.data.r2dbc.repository.Query; import org.sp...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamejuzweb
hostnamegithub.com
expected-hostnamegithub.com
None60279d4097367e16897439d16d6bbe4180663db828c666eeed2656988ffe59f6
turbo-cache-controlno-preview
go-importgithub.com/jasync-sql/jasync-sql git https://github.com/jasync-sql/jasync-sql.git
octolytics-dimension-user_id42655245
octolytics-dimension-user_loginjasync-sql
octolytics-dimension-repository_id145898133
octolytics-dimension-repository_nwojasync-sql/jasync-sql
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id145898133
octolytics-dimension-repository_network_root_nwojasync-sql/jasync-sql
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release7c85641c598ad130c74f7bcc27f58575cac69551
ui-targetcanary-2
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/issues/425#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fjasync-sql%2Fjasync-sql%2Fissues%2F425
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fjasync-sql%2Fjasync-sql%2Fissues%2F425
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=jasync-sql%2Fjasync-sql
Reloadhttps://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/issues/425
Reloadhttps://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/issues/425
Reloadhttps://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/issues/425
jasync-sql https://patch-diff.githubusercontent.com/jasync-sql
jasync-sqlhttps://patch-diff.githubusercontent.com/jasync-sql/jasync-sql
Please reload this pagehttps://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/issues/425
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fjasync-sql%2Fjasync-sql
Fork 139 https://patch-diff.githubusercontent.com/login?return_to=%2Fjasync-sql%2Fjasync-sql
Star 1.7k https://patch-diff.githubusercontent.com/login?return_to=%2Fjasync-sql%2Fjasync-sql
Code https://patch-diff.githubusercontent.com/jasync-sql/jasync-sql
Issues 15 https://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/issues
Pull requests 2 https://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/pulls
Discussions https://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/discussions
Actions https://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/actions
Wiki https://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/wiki
Security 0 https://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/security
Insights https://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/pulse
Code https://patch-diff.githubusercontent.com/jasync-sql/jasync-sql
Issues https://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/issues
Pull requests https://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/pulls
Discussions https://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/discussions
Actions https://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/actions
Wiki https://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/wiki
Security https://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/security
Insights https://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/jasync-sql/jasync-sql/issues/425
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/jasync-sql/jasync-sql/issues/425
named binding is not supported by jasync driverhttps://patch-diff.githubusercontent.com/jasync-sql/jasync-sql/issues/425#top
https://github.com/juzweb
https://github.com/juzweb
juzwebhttps://github.com/juzweb
on Sep 6, 2024https://github.com/jasync-sql/jasync-sql/issues/425#issue-2510348992
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.