数据是实时更新到数据库的,然后用quickbi做的仪表盘,仪表盘展现的数据能实时更新吗

数据是实时更新到数据库的,然后用quickbi做的仪表盘,仪表盘展现的数据能实时更新吗,第1张

要想做到实时更新,最好是数据库支持通知机制,也就是数据库某表数据发生变化自动通知前台,也就是数据库自动推数据。通常条件比较苛刻。

所以通常我们用程序定时拉数据。做不到真正的实时,主要看你拉数据的间隔,和执行效率。

当然也有一些黑科技,自己挖掘吧。比如用程序通知程序而不是导数据库去拉数据。

祝好运,望采纳。

为方便完成指定数据表的同步 *** 作,可以采用dblink与merge结合的方法完成。

*** 作环境: 此数据库服务器ip为19216819676,有center与branch两个库,一般需要将center的表数据同步到branch,center为源库,branch为目标库,具体步骤如下:

1在源库创建到目标库的dblink

create database link branch --输入所要创建dblink的名称,自定义

connect to dbuser identified by “password” --设置连接远程数据库的用户名和密码

using '19216819676/branch'; --指定目标数据库的连接方式,可用tns名称

在创建dblink时,要注意,有时候可能会报用户名和密码错误,但实际上我们所输入的账户信息是正确的,此时就注意将密码的大小写按服务器上所设置的输入,并在账号密码前号加上双引号(服务器版本不同造成的)。

2成功后验证dblink

select from tb_bd_action@branch; --查询创建好的brach库

正常情况下,如果创建dblink成功,可采用该方式访问到远程数据库的表

3通过merge语句完成表数据同步

此例中需要将center库中的tb_sys_sqlscripe表同步到branch,简单的语法如下:

merge into tb_sys_sqlscripe@branch b using tb_sys_sqlscripe c on (bpk=cpk) --从center将表merge到branch,同步的依据是两个表的pk

when matched then update set bsqlscripe=csqlscripe,bauthor=cauthor --如果pk值是相同则将指定表的值更新到目标表

when not matched then --如果pk值不一至,则将源表中的数据整条插入到目标表中

insert values (cpk, cfk, ccreatetime, clastmodifytime,cauthor,cmodule,cdeleteflag, cscripttype);

commit; --记得merge后必须commit,否则更改未能提交

4为方便每次需要同步时自动完成同步工作,可将该语句做成存储过程或脚本来定时执行或按要求手动执行,简单说一下创建脚本的方法:

a创建merge文件夹

b先将merge语句写完整后,存到mergesql文件中

c新建mergebat文件,编辑后写入以下内容

sqlplus user/password@serverip/database @"%cd%\mergesql"

主要控件有 datagridview checkbox picturebox trackBar1 label

_atagridview :实时显示数据

_heckbox :指示是否停止更新

_icturebox :显示更新状态

_rackBar1 :设置更新时间频率

_abel :显示一些相关信息

_

1 using System;

2 using SystemCollectionsGeneric;

3 using SystemComponentModel;

4 using SystemData;

5 using SystemDrawing;

6 using SystemText;

7 using SystemWindowsForms;

8 using SystemThreading;

9

10 namespace WinMilkProjectProject

11 {

12

13 public partial class Form1 : Form

14 {

15 Thread myThread;

16 OperateCB operatedb = new OperateCB();

17 public int frequency = 0;//更新时间频率

18 public static bool isUse = false;//是否停止更新

19 public static string statusInfo = stringEmpty;//状态

20 private delegate void myDelegate(DataTable dt);//定义委托

21 public Form1()

22 {

23 InitializeComponent();

24 label2Text = "更新频率为:" + (trackBar1Value / 1000)ToString() + "秒";

25 }

26

27 private void Form1_Load(object sender, EventArgs e)

28 {

29 myThread = new Thread(startFillDv);//实例化线程

30 myThreadStart();

31

32 }

33

34 private void startFillDv()

35 {

36 while (true)

37 {

38 if (isUse)

39 {

40 statusInfo = "正在实时更新数据";

41 DataTable dt = operatedbMyDataTable("select from test1");//把自己写的数据封装类OperaterCB 能够返回一个datatable

42 Grid(dt);

43 ThreadSleep(frequency);

44 }

45 else

46 {

47 statusInfo = "停止更新!";

48 }

49 }

50

51 }

52

53 private void Grid(DataTable dt)

54 {

55 if (thisInvokeRequired)

56 {

57 thisInvoke(new myDelegate(Grid), new object[] { dt });

58 }

59 else

60 {

61 try

62 {

63 thisdataGridView1DataSource = null;

64 thisdataGridView1DataSource = dt;

65 dt = null;

66 statusInfo = "更新完成!";

67 }

68 catch

69 {

70

71 }

72 }

73

74 }

75

76 private void Form1_FormClosed(object sender, FormClosedEventArgs e)

77 {

78 if (thismyThreadIsAlive)

79 {

80 thismyThreadAbort();//结束线程

81 }

82 }

83

84 private void timer1_Tick(object sender, EventArgs e)

85 {

86 label1Text = statusInfo;

87 frequency = trackBar1Value;

88 if (statusInfoTrim() == "正在实时更新数据")

89 {

90 pictureBox1Visible = true;

91 }

92 else

93 {

94 pictureBox1Visible = false;

95 }

96

97 }

98

99 private void checkBox1_CheckedChanged(object sender, EventArgs e)

100 {

101 if (checkBox1Checked)

102 {

103 isUse = true;

104 }

105 else

106 {

107 isUse = false;

108 }

109

110 }

111

112 private void trackBar1_Scroll(object sender, EventArgs e)

113 {

114 label2Text = "更新频率为:" + (trackBar1Value / 1000)ToString() + "秒";

115 }

116

117 }

118 }

_

以上就是关于数据是实时更新到数据库的,然后用quickbi做的仪表盘,仪表盘展现的数据能实时更新吗全部的内容,包括:数据是实时更新到数据库的,然后用quickbi做的仪表盘,仪表盘展现的数据能实时更新吗、实时扫描数据库的方法如何实现、mfc datagrid怎么实时更新数据库内容等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10183559.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-06
下一篇 2023-05-06

发表评论

登录后才能评论

评论列表(0条)

保存