datasource 相关问题

Datasource是从服务器设置到数据库的连接的名称。在为数据库创建查询时,通常使用该名称。数据库源名称(DSN)不必与数据库的文件名相同。

为什么在VB.NET中没有出现Binding Combobox usingdictionary with the MS ACCESS database with dapper

我正在尝试使用VB.NET中的dapper将字典与MS ACCESS数据库绑定组合框。 所以我希望使用字典的绑定出现在组合框中,这是表的结果

回答 1 投票 0

有没有一种方法可以在 Spring Boot 中仅在到达端点后创建数据源,而不是在使用 @Configuration 注释启动时创建数据源

我有一个要求,我需要在Spring Boot应用程序中创建一个数据源来进行数据库操作。 目前我正在使用 JpaRepository 使用创建的数据源来执行此操作

回答 1 投票 0

如何确定terraform中json数据的Principle类型

我正在学习 terraform,想知道如何确定数据 json 中主体的类型和标识符。我想要转换为数据 json 的内联策略是 “主要的” : { ...

回答 1 投票 0

ComboBox 和 ListBox 未显示我添加到其中的数据

所以我有这个 ComboBox 和 ListBox 我第一次尝试数据绑定,因为我向它们添加数据,但它没有显示在 Windows 窗体中 私人列表 可用团队成员...

回答 1 投票 0

无模型的角度材质表动态列

我需要使用没有模型的角材料表,因为我不知道服务会带来什么。 所以我在像 t 这样的组件中动态初始化我的 MatTableDataSource 和 displayedColumns...

回答 4 投票 0

在docker、spring web应用中找不到适合数据源的驱动类

我有一个使用 postgre SQL 数据库的 Spring Web 应用程序。 从 IntelliJ 运行时,一切顺利,但是当尝试在 docker 中运行图像时,我收到数据源错误。 日志...

回答 1 投票 0

从 D365 FO、x++ 中的显示方法检索数据

我是 d365 的新手,由于显示方法,我的任务遇到了一些问题。 我采用 LedgerJournalTransVendInvoice 形式,其中有“总金额”字段。检查...的属性

回答 1 投票 0

在 Wildfly 11 中添加 jedis 模块用作数据源

我正在尝试在 wildfly-11 中安装 jedis 模块,以便我可以创建数据源。我正在使用 jedis-5.1.0.jar 为此目的。 我已经在 $JBOSS_HOME/mo 中创建了目录 org/redis/jdbc/main...

回答 1 投票 0

需要根据地区从数据源中提取子网id

我有数据源模块,我通过传递子网名称来提取子网 ID。 文件位于数据模块中: 模块/数据/data.tf 数据“aws_vpc”“vpc-id”{ 提供者=&quo...

回答 1 投票 0

无法处理 PropertyOverrideConfigurer 中的键“dataSource” - 无效键“dataSource”:预期为“beanName.property”

我正在oracle中安装sailpoint,属性配置为: ##### 数据源属性 ##### dataSource.maxWaitMillis=10000 数据源.maxTotal=50 数据源.minIdle=5 #数据源。

回答 1 投票 0

没有数据源的 Spring Batch 5

我正在尝试将我的 Spring 批次从 v4 迁移到 v5,但该批次不使用数据库。 问题是当我尝试运行带有新闻更改的批处理时,我收到此错误:JobRepository is

回答 1 投票 0

Oracle UCP PoolDataSource,意外行为

我们有一个 REST 服务 java 应用程序,它使用 oracle.ucp.jdbc.PoolDataSource 来自:com.oracle.ojdbc:ojdbc10:jar:19.3.0.0 人流量不是很大, 通常,某个时间只有一个请求在运行...

回答 1 投票 0

提取包含 Power BI 仪表板中所有数据源的列表

我想知道是否有一种方法可以提取包含所有数据源的列表,或者是否有人知道 python 脚本或类似脚本来获取此信息。 谢谢。 目前我只找到了一个代码...

回答 1 投票 0

数据源mat-table未更新

我有一个函数,当我对单击的列的表进行排序但数据没有更新时会触发该函数。 这是函数和表代码: 我有一个函数,当我对单击的列进行排序时触发,但数据没有更新。 这是函数和表代码:<table mat-table #table [dataSource]="dataSourceMD" matSort (matSortChange)="getRowMaximoTable($event)" matTableExporter #exporter="matTableExporter" #sortMD="matSort" class="tr_table"> <ng-container *ngFor="let disCol of displayedColumnsMD; let colIndex = index" matColumnDef="{{disCol}}" [sticky]="isIn(disCol)"> <th mat-header-cell *matHeaderCellDef mat-sort-header> <div [innerHTML]="displayedColumnsNamesMD[colIndex]"></div> </th> <td mat-cell *matCellDef="let element" [style.background-color]="element[disCol+'Color']" [style.color]="element[disCol+'Texto']"> <div *ngIf="element[disCol]" [innerHTML]="element[disCol]"></div> <div *ngIf="!element[disCol] && !isIn(disCol)" [innerHTML]="'-'"></div> </td> </ng-container> <ng-container *ngFor="let filCol of displayedFilterColumnMD; let colIndexF = index" matColumnDef="{{filCol}}" [sticky]="colIndexF<3"> <th mat-header-cell *matHeaderCellDef [style.text-align]="center" [attr.colspan]="1"> <mat-form-field class="columnas" floatLabel='never'> <input matInput placeholder="Filtro" type="text" [(ngModel)]='filterTableMD[displayedColumnsMD[colIndexF]]' name="displayedColumnsMD[colIndexF]" (keyup)="hanlerOnChangeFilter($event, 'MD',displayedColumnsMD[colIndexF])"> <button mat-button *ngIf="filterTableMD[displayedColumnsMD[colIndexF]]" (click)="handlerClearFilterField('MD',displayedColumnsMD[colIndexF])" matSuffix mat-icon-button aria-label="Clear"> <mat-icon class="material-icons-outlined">close</mat-icon> </button> </mat-form-field> </th> </ng-container> <tr mat-header-row *matHeaderRowDef="displayedColumnsMD; sticky: true"></tr> <tr mat-header-row *matHeaderRowDef="displayedFilterColumnMD"></tr> <tr mat-row [ngClass]="{ 'maximo-row': i == indexMaximoMD }" *matRowDef="let row; columns: displayedColumnsMD; let i = index"></tr> </table> 功能:getRowMaximoTable(event?: MatSort) { let originalArrayData = [ ...this.dataSourceMD.data ]; const valoresArrayASortear = originalArrayData.slice(0, -4); const valoresArrayFijos = originalArrayData.slice(-4); const sortedArray = this.dataSourceMD.sortData(valoresArrayASortear, this.dataSourceMD.sort); this.dataSourceMD.data = [...sortedArray, ...valoresArrayFijos]; } 我想在单击一个标题列时正确更新数据 您可以尝试强制 Angular 再次运行更改检测来解决此问题吗? import { Component, ChangeDetectorRef } from '@angular/core'; @Component({ selector: 'app-dummy', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class DummyComponent { constructor(private cdr: ChangeDetectorRef) {} getRowMaximoTable(event?: MatSort) { let originalArrayData = [...this.dataSourceMD.data]; const valoresArrayASortear = originalArrayData.slice(0, -4); const valoresArrayFijos = originalArrayData.slice(-4); const sortedArray = this.dataSourceMD.sortData(valoresArrayASortear, this.dataSourceMD.sort); this.dataSourceMD.data = [...sortedArray, ...valoresArrayFijos]; this.cdr.detectChanges(); // force change detection to recheck array } } 您可以尝试使用 viewChild 获取 MatdataTable 并使用 table.renderRows() 强制再次渲染或创建一个新的 MatDataTable @ViewChild('table') table!:MatTable //or Simple //@ViewChild('table') table!:MatTable //and use: this.table.renderRows() 或使用 this.dataSourceMD=new MatTableDataSource([...sortedArray, ...valoresArrayFijos]) //remember that if you create a new MatDataTable //you loose the matSort and paginator this.dataSourceMD.sort=this.matSort this.dataSourceMD.paginator=this.paginator

回答 2 投票 0

使用JPA时如何刷新DataSource bean?

我每隔 1 分钟就会刷新 Hikari 数据源。我正在使用 spring data JPA 来执行保存操作。但是 JPA 指向旧的数据源 bean,我很...

回答 1 投票 0

如何将角度信号与材质表数据源一起使用?

我正在尝试使用新的角度“功能” - 信号。在某些服务中我有一个信号: failedTasks = 计算(() => this.tasksState().failedTasks); 然后,我想连接它

回答 1 投票 0

为什么 HikariPool-1 - 默认事务隔离级别检测失败(关闭连接)?

2023-11-20 12:59:59.003 [主要] 调试 com.zaxxer.hikari.HikariConfig - 验证超时......................250 2023-11-20 12:59:59.007 [主要] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - 圣...

回答 1 投票 0

Power BI 与 Signal 数据库集成具有多租户

我有一个 Azure 托管立场数据库,其中存储了多个租户。现在,我的一位客户正在请求数据源来使用 Power BI 运行报告。我正在寻找最好的方法我该怎么做

回答 2 投票 0

启用多个数据源时,TenantConnectionProvider 找不到数据源

我正在创建一个使用多租户的 Spring Kotlin 应用程序。我想向我的应用程序添加第二个数据源。 使用 Spring Boot JPA 的多租户可以很好地处理单个数据源

回答 1 投票 0

BigQuery 错误:访问被拒绝:BigQuery BigQuery:获取云端硬盘凭据时权限被拒绝

我正在尝试将 Data Studio 报告连接到表以及 BigQuery 中的视图。 在 BigQuery 中,表从位于我的云端硬盘中的 GoogleSheet 接收数据,视图正在查询此...

回答 2 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.