摘要: 先简单说说我为什么要编译一个ORM访问数据库的版本, 以前在做C#访问数据库时候, 直接以orm方式访问数据库, 代码写起来简单, 不用写各种复杂的sql语句, 直接有orm框架生成, 后来转到C++上面来了, 也有访问的数据库, 虽然C++访问的数据库方式有很多, 但是都是那些odbc, ado 阅读全文
posted @ 2018-08-15 16:38 Software_hul 阅读(1609) 评论(0) 推荐(2) 编辑
摘要: 今天连接一个Win2008 Server服务端上的一个oracle出现了下面的这些错误 LoadLibraryFromPath: FQ Dll C:\Windows\system\oci.dll is not found, error: 0x7eLoadLibraryFromPath: FQ Dll 阅读全文
posted @ 2018-08-06 10:56 Software_hul 阅读(2967) 评论(0) 推荐(0) 编辑
摘要: 这些简单的转换是用的比较频繁的, 因此将这些功能全部封装在一个类中 头文件 1 #pragma once 2 #include <stdlib.h> 3 #include <string> 4 #include "tchar.h" 5 #include "windows.h" 6 using nam 阅读全文
posted @ 2018-07-25 16:43 Software_hul 阅读(1796) 评论(0) 推荐(0) 编辑
摘要: , 在wpf模板中, 有一个Background绑定的值不存在导致的异常, 我的是有这个没有导致的错误, 自己添加之后就没有了 阅读全文
posted @ 2017-12-25 12:06 Software_hul 阅读(4549) 评论(0) 推荐(0) 编辑
摘要: 定义树节点,(编译环境VS2017) xmal 前端代码: localCatalog 绑定的树结构 Tips: 编译的时候 DataType="{x:Type mode:GBTreeNode}" 此段代码会出错, 需要在xmal头添加GBTreeNode所在命名空间 xmlns:mode="clr- 阅读全文
posted @ 2017-12-11 17:45 Software_hul 阅读(631) 评论(0) 推荐(0) 编辑
摘要: 该问题是由于在创建DataGrid时没有设置为只读属性 解决: <DataGrid Name="switchInfoList" MouseLeftButtonDown="switchInfoList_MouseLeftButtonDown" AutoGenerateColumns="False" I 阅读全文
posted @ 2017-07-13 17:52 Software_hul 阅读(458) 评论(0) 推荐(0) 编辑
摘要: textComBox.SelectedItem as ComboBoxItem).Content textConbox: 控件Combobox 的Name在Combobox控件SelectionChanged事件中使用 阅读全文
posted @ 2017-06-27 10:48 Software_hul 阅读(655) 评论(0) 推荐(0) 编辑
摘要: .Netformwork4.0及以下版本 INotifyPropertyChanged 命名空间: System.ComponentModel 后台代码 前端代码绑定 .Netformwork4.5及以上版本 INotifyPropertyChanged,CallerMemberName 命名空间: 阅读全文
posted @ 2017-06-07 19:23 Software_hul 阅读(11768) 评论(0) 推荐(1) 编辑
摘要: 原文链接地址:http://blog.csdn.net/lanruoshui/article/details/5090710 原理如下: 1、利用反射进行动态加载和调用. Assembly assembly=Assembly.LoadFrom(DllPath); //利用dll的路径加载,同时将此程 阅读全文
posted @ 2017-06-07 11:38 Software_hul 阅读(705) 评论(0) 推荐(0) 编辑
摘要: 引用: using System.IO; using System.Xml.Serialization; XML序列化接口(直接copy就能用) 反序列化接口 接口调用 string str = XMLSerialize(typeof(root), rt); //root是类名 rt是类对象 Con 阅读全文
posted @ 2017-06-06 16:30 Software_hul 阅读(336) 评论(0) 推荐(0) 编辑