MYSQL
ALLsharps
这个作者很懒,什么都没留下…
展开
-
PHP连接MYSQL数据库
<?php $conn = mysql_connect("127.0.0.1","root"); mysql_select_db("test",$conn); $table = mysql_query("select * from UserInfo"); ?> t原创 2011-10-15 20:46:06 · 551 阅读 · 0 评论 -
Apache2.2 + PHP5.3 + MySQL5.5安装指南
首先下载三个软件 Apache2.2 http://httpd.apache.org/download.cgi 找到Win32 Binary without crypto (no mod_ssl) (MSI Installer):下载 PHP5.3 http://window原创 2011-10-16 11:29:28 · 974 阅读 · 0 评论 -
ms sql 2005 2008 通用表分页存储过程
USE [LevcnBase] GO /****** Object: StoredProcedure [dbo].[Paging] Script Date: 11/09/2011 18:10:11 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER Procedure [dbo].[Paging] @TableN原创 2011-11-09 18:08:44 · 1199 阅读 · 0 评论 -
Linq To SQL通用分页存储过程二个,支持多表联合.
/// /// 数据库查询会话基类 /// public class DataContextBase : DataContext, IPagingDataContext { private static readonly MappingSource MappingSource = new AttributeMappingSource();原创 2012-03-15 12:30:43 · 3288 阅读 · 1 评论 -
CentOS7用yum安装、配置MariaDB 10
1.创建/etc/yum.repos.d/MariaDB.repo文件,这里用到了刚刚发布正式版的10.0 [mariadb] name = MariaDB baseurl = http://yum.mariadb.org/10.2.1/centos7-amd64/ gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck=1转载 2016-07-30 10:11:10 · 5533 阅读 · 0 评论