自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(0)
  • 资源 (3)
  • 收藏
  • 关注

空空如也

Entity Framework Core 2.0最新国外电子书PDF

Use the valuable Entity Framework Core 2.0 tool in ASP.NET and the .NET Framework to eliminate the tedium around accessing databases and the data they contain. Entity Framework Core 2.0 greatly simplifies access to relational databases such as SQL Server that are commonly deployed in corporate settings. By eliminating tedious data access code that developers are otherwise forced to use, Entity Framework Core 2.0 enables you to work directly with the data in a database through domain-specific objects and methods. Beginning Entity Framework Core 2.0 is a carefully designed tutorial. Throughout the book you will encounter examples that you can use in your day-to-day coding, and you will build a solid foundation on which to create database-backed applications. If you are looking for a way to get started without getting buried under details you are only going to forget, then this is the book for you. The author aims to leave you comfortably able to connect to, access, modify, and delete data from a relational database. The book provides a clear, straightforward approach and includes code that you can look back at months later and understand.

2018-04-15

pb开发的应用程序自动升级程序

pb开发的应用程序自动升级程序 ------------------------------------------------------------- --软件名称:软件自动升级系统 --适用范围:pb8 + mssql server 2000 --开发日期:2003-09-26 --版权所有:Susue 未经许可不得仿制,反编译 --系统原理:将系统文件打包,存入数据库,升级时再还原为磁盘文件 -------------------------------------------------------------- --使用简单说明 --1--数据库连接,首先配置 dbc.ini 文件的 [Update] 小节(即连接参数) --2--打包文件,运行 ftd.exe 将系统用到或升级用到的文件打包进数据库,一次只能上传 1 个文件。 --3--升级程序,直接运行 dtf.exe 即可,或在程序中调用,方法如下: run('dtf.exe') halt close 备注:(系统必须的文件) mssql 直连需3个文件 dbnetlib.dll dbnmpntw.dll ntwdblib.dll pb8 运行库需4个文件 libjcc.dll (可选) pbvm80.dll (必须) pbdwe80.dll (可选) pbmss80.dll (必须) -------------------------------------------------------------- --软件名称:软件自动升级系统 --适用范围:pb8 + mssql server 2000 --开发日期:2003-09-26 --版权所有:Susue 未经许可不得仿制,反编译 --系统原理:将系统文件打包,存入数据库,升级时再还原为磁盘文件 -------------------------------------------------------------- --使用简单说明 --1--数据库连接,首先配置 dbc.ini 文件的 [Update] 小节(即连接参数) --2--打包文件,运行 ftd.exe 将系统用到或升级用到的文件打包进数据库,一次只能上传 1 个文件。 --3--升级程序,直接运行 dtf.exe 即可,或在程序中调用,方法如下: run('dtf.exe') halt close 备注:(系统必须的文件) mssql 直连需3个文件 dbnetlib.dll dbnmpntw.dll ntwdblib.dll pb8 运行库需4个文件 libjcc.dll (可选) pbvm80.dll (必须) pbdwe80.dll (可选) pbmss80.dll (必须)

2010-12-24

用PB实现的进程线程管理

用PB实现的进程线程管理 代码示例: security_attribute lstr_security startupinformation lstr_startup process_info lstr_process string ls_appname, ls_currdirectory, ls_imgname, ls_null boolean lb_return constant string ls_nullchar = char(0) ulong lul_null long ll_null setnull(lul_null) setnull(ll_null) setnull(ls_null) ls_imgname = ls_nullchar lstr_startup.cb = 68 lstr_startup.lpreserved = ls_nullchar lstr_startup.lpdesktop = ls_nullchar lstr_startup.lpTitle = ls_nullchar lstr_startup.dwX = lul_null lstr_startup.dwY = lul_null lstr_startup.dwXSize = lul_null lstr_startup.dwYSize = lul_null lstr_startup.dwXCountChars = lul_null lstr_startup.dwYCountChars = lul_null lstr_startup.dwFillAttribute = lul_null lstr_startup.dwFlags = 1 lstr_startup.wShowWindow = ii_windowstate // default is 1 = SW_SHOWNORMAL lstr_startup.cbReserved2 = 0 lstr_startup.lpReserved2 = ll_null lstr_startup.hStdInput = lul_null lstr_startup.hStdOutput = lul_null lstr_startup.hStdError = lul_null //if il_processID > 0 then uf_isrunning() if il_processID = 0 then lb_return = createprocess(lul_null, appname, lul_null, lul_null, & true, 0, lul_null, ls_null, lstr_startup, lstr_process) il_processID = lstr_process.lul_process else lb_return = false end if return lb_return

2010-12-24

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除