獲取mysqli函式的值和欄位名

2022-07-30 20:33:19 字數 1172 閱讀 4263

<?php

$mysqli=new mysqli("localhost", "root", "123456", "xsphpdb");

if(mysqli_connect_errno

())

//執行select語句,返回來的就是結果集(物件)

$sql="select id cid, name shopname, price shopprice, num shopnum, desn shopdesn from shops";

$result=$mysqli->query($sql

);

$rows=$result->num_rows;

$cols=$result->field_count;

echo "表中行,列

";

//記錄資訊

/*$result->fetch_row() ---- mysql_fetch_row() 索引陣列

* $result->fetch_assoc() --- mysql_fetch_assoc() 關聯陣列(下標就是列名)

* $result->fetch_array() ---- mysql_fetch_array() 兩個陣列都返回(mysqli_assoc, mysqli_num,mysqli_both(default))

* $result->fetch_object() --- mysql_fetch_object()

* * 每次執行一次,就會從結果集中取出當前一條記錄(當前記錄就是第乙個行,可以使用data_seek(5))

*

* 指標指向下一行,下次再取時,就會取出下一行,當結果集中沒有記錄時,則返回false

**/echo '';

echo '';

//$result->field_seek(2);

while($field=$result->fetch_field())

echo '';

//$result->data_seek(50);

while($row=$result->fetch_assoc())

echo '';

}echo '';

$result->free();

$mysqli->close();

Oracle獲取最新插入的字段值

declare newmas id number begin insert into mu alarm strategy mas id,mas name,mas insert time,mas update time,mas user id values 0,testtt to date 2013 ...

Jemeter 獲取響應中字段的值

介面測試過程中,下乙個請求經常會用到上乙個請求響應的結果,這就是jemeter的引數關聯。例如獲取第乙個id的內容 totalnum 3,pagesize 8 方法一 json extractor 這個需要安裝外掛程式 在需要獲取結果的請求上右鍵選擇 新增 後置處理器 json extractor ...

怎樣獲取螢幕輸入欄位的輸入值

假設選擇螢幕上有2個輸入字段,parameters p werks type marc werks,工廠 p matnr type marc matnr.物料 為物料輸入字段設定f4輸入幫助,其f4輸入幫助內容是根據工廠值來確定的,就是說物料是輸入的工廠下的所有物料。但是在下列事件為物料設定輸入幫助...