上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 86 下一页
摘要: Oracle官方的托管数据库访问组件,单DLL,Oracle.ManagedDataAccess.dll,不安装Oracle客户端,不区分32/64位, 直接引用即可。 与非托管程序为Oracle.DataAccess.dll相比,不支持BulkCopy和CustomType等。 下载 https: 阅读全文
posted @ 2020-05-06 12:26 富坚老贼 阅读(945) 评论(0) 推荐(0)
摘要: 1.定义函数 参数要加类型,要有返回值 function add(x: number, y: number): number { return x + y; } //匿名函数 let myAdd = function(x: number, y: number): number { return x 阅读全文
posted @ 2020-05-04 12:37 富坚老贼 阅读(106) 评论(0) 推荐(0)
摘要: 1.基本 //接受一个对象,该对象里必须包含 number类型的age属性 function fun(stu:{age:number}){ console.info('hello') } 2.使用interface interface Student{ age:number } function f 阅读全文
posted @ 2020-05-04 12:12 富坚老贼 阅读(91) 评论(0) 推荐(0)
摘要: nuget :Oracle.EntityFrameworkCore 直接写连接串的方式 此方法实例化DDDContext时无需传入参数 using Microsoft.EntityFrameworkCore; using System; using System.ComponentModel.Dat 阅读全文
posted @ 2020-05-02 15:26 富坚老贼 阅读(1529) 评论(0) 推荐(0)
摘要: Input and selections Checkbox Date & Time Pickers Radio Slider Switch TextField 阅读全文
posted @ 2020-05-01 14:28 富坚老贼 阅读(162) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-05-01 10:57 富坚老贼 阅读(133) 评论(0) 推荐(0)
摘要: 还可以参考 https://github.com/wendal/go-oci8 一、下载oci ORACLE调用接口(Oracle Call Interface简称OCI) https://www.oracle.com/database/technologies/instant-client/dow 阅读全文
posted @ 2020-04-30 22:43 富坚老贼 阅读(1307) 评论(0) 推荐(0)
摘要: 扩展方法的要求: 1.扩展方法要求在一个静态类中 2.扩展方法本身也是静态方法 3.扩展方法第一个参数是 [this 要扩展的类 参数名称] public class Program { static void Main() { int a = 10; int b=a.fun(); Console. 阅读全文
posted @ 2020-04-30 20:21 富坚老贼 阅读(122) 评论(0) 推荐(0)
摘要: 一、WebView AndroidManifest.xml <uses-permission android:name="android.permission.INTERNET"/> layout <WebView android:layout_width="match_parent" androi 阅读全文
posted @ 2020-04-28 10:35 富坚老贼 阅读(123) 评论(0) 推荐(0)
摘要: 再sqlpuls里执行 set timing on 再执行sql语句 阅读全文
posted @ 2020-04-27 16:05 富坚老贼 阅读(164) 评论(0) 推荐(0)
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 86 下一页