最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501
当前位置: 首页 - 科技 - 知识百科 - 正文

php如何连接MSSQLServer数据库

来源:懂视网 责编:小采 时间:2020-11-09 10:03:39
文档

php如何连接MSSQLServer数据库

php如何连接MSSQLServer数据库:如何连接MS SQL Server 下面是连接到MSSQL服务器数据库代码。 $myServer = localhost; $myUser = your_name; $myPass = your_password; $myDB = examples; //connection to the database $dbha
推荐度:
导读php如何连接MSSQLServer数据库:如何连接MS SQL Server 下面是连接到MSSQL服务器数据库代码。 $myServer = localhost; $myUser = your_name; $myPass = your_password; $myDB = examples; //connection to the database $dbha

如何连接MS SQL Server

下面是连接到MSSQL服务器数据库代码。

$myServer = "localhost";
$myUser = "your_name";
$myPass = "your_password";
$myDB = "examples";

//connection to the database
$dbhandle = mssql_connect($myServer, $myUser, $myPass)
or die("Couldn't connect to SQL Server on $myServer");

//select a database to work with
$selected = mssql_select_db($myDB, $dbhandle)
or die("Couldn't open database $myDB");

//declare the SQL statement that will query the database
$query = "SELECT id, name, year ";
$query .= "FROM cars ";
$query .= "WHERE name='BMW'";

//execute the SQL query and return records
$result = mssql_query($query);

$numRows = mssql_num_rows($result);
echo "

" . $numRows . " Row" . ($numRows == 1 ? "" : "s") . " Returned

";

//display the results
while($row = mssql_fetch_array($result))
{
echo "

  • " . $row["id"] . $row["name"] . $row["year"] . "
  • ";
    }
    //close the connection
    mssql_close($dbhandle);
    ?>

    DSN的主张'数据源名称'。这是一个简单的方法来分配,容易rememberable有用的数据

    源的名称可能不局限于单独的数据库。如果您不知道如何建立一个系统DSN阅读我们的

    教程如何建立一个系统DSN。

    在下面的例子,我们将告诉你如何以一MSSQL服务器数据库DSN所谓'连接

    examples.mdb'和检索所有的记录表中的'车'。

    //connect to a DSN "myDSN"
    $conn = odbc_connect('myDSN','','');

    if ($conn)
    {
    //the SQL statement that will query the database
    $query = "select * from cars";
    //perform the query
    $result=odbc_exec($conn, $query);

    echo "

    ";

    //print field name
    $colName = odbc_num_fields($result);
    for ($j=1; $j<= $colName; $j++)
    {
    echo "

    ";
    }

    //fetch tha data from the database
    while(odbc_fetch_row($result))
    {
    echo "

    ";
    for($i=1;$i<=odbc_num_fields($result);$i++)
    {
    echo "";
    }
    echo "";
    }

    echo " ";
    echo "

    ";
    echo odbc_field_name ($result, $j );
    echo "
    ";
    echo odbc_result($result,$i);
    echo "
    ";

    //close the connection
    odbc_close ($conn);
    }
    else echo "odbc not connected";
    ?>
    =======================

    php 如何把pdf文件转换成txt文本文件

    文档格式(PDF)是一种文件格式创建的文件交换。每个PDF文件封装了一个固定布局

    的2D文件的完整说明(和,与Acrobat 3D软件,嵌入式3D文件),其中包括文字,字

    体,图像和二维矢量图形,撰写文件。

    function pdf2text($filename) {

    // Read the data from pdf file
    $infile = @file_get_contents($filename, FILE_BINARY);
    if (empty($infile))
    return "";

    // Get all text data.
    $transformations = array();
    $texts = array();

    // Get the list of all objects.
    preg_match_all("#obj(.*)endobj#ismU", $infile, $objects);
    $objects = @$objects[1];

    // Select objects with streams.
    for ($i = 0; $i < count($objects); $i++) {
    $currentObject = $objects[$i];

    // Check if an object includes data stream.
    if (preg_match("#stream(.*)endstream#ismU", $currentObject,

    $stream)) {
    $stream = ltrim($stream[1]);

    // Check object parameters and look for text data.
    $options = getObjectOptions($currentObject);
    if (!(empty($options["Length1"]) && empty($options["Type"]) &&

    empty($options["Subtype"])))
    continue;

    // So, we have text data. Decode it.
    $data = getDecodedStream($stream, $options);
    if (strlen($data)) {
    if (preg_match_all("#BT(.*)ET#ismU", $data,

    $textContainers)) {
    $textContainers = @$textContainers[1];
    getDirtyTexts($texts, $textContainers);
    } else
    getCharTransformations($transformations, $data);
    }
    }

    }

    // Analyze text blocks taking into account character transformations

    and return results.
    return getTextUsingTransformations($texts, $transformations);
    }

    声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

    文档

    php如何连接MSSQLServer数据库

    php如何连接MSSQLServer数据库:如何连接MS SQL Server 下面是连接到MSSQL服务器数据库代码。 $myServer = localhost; $myUser = your_name; $myPass = your_password; $myDB = examples; //connection to the database $dbha
    推荐度:
    标签: 连接 数据 php
    • 热门焦点

    最新推荐

    猜你喜欢

    热门推荐

    专题
    Top