• PHP连接mysql数据库


    PHP与mysql数据库连接

    1、数据库中常用的mysql操作函数

    (1)连接数据库服务器

    ​ resource mysql_connect(string hostname,string username,string password)

    (2)关闭服务器连接

    ​ bool mysql_close(resource link)

    (3)选择当前操作的服务器

    ​ bool mysql_select_db(string database_name,resource link);

    ​ (4)发送sql语句

    ​ {bool/resource} mysql_query(string sql,[resource link])

    ​ (5)查看影响的行数:

    ​ int mysql_affected_rows([resource link])

    ​ (6)当使用insert语句时,可以通过该函数查看插入行的id:

    ​ int mysql_insert_id([resource link])

    ​ (7)查看该sql语句查询到的表记录行数

    ​ int mysql_num_rows(resource result)

    ​ (8) 释放结果集资源

    ​ bool mysql_free_result(resource result)

    ​ (9)遍历结果集中的数据:

    ​ array mysql_fetch_row(resource result)

    ​ array mysql_fetch_array(resource result)

  • 相关阅读:
    pycharm的集成vim
    几款在线脑图制作工具
    编辑器vim简介
    常用服务器ftp、ssh
    56. Merge Intervals
    58. Length of Last Word
    55. Jump Game
    53. Maximum Subarray
    52. N-Queens II
    51. N-Queens
  • 原文地址:https://www.cnblogs.com/yangsongwei/p/9802742.html
Copyright © 2020-2023  润新知