- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 C++ 制作一个 mysql 应用程序。
我想编写一个代码来获取所需的行。
然后我取这一行的值。
我将其放入第一个数组中并遍历列,直到完成该行。
然后我得到下一行,将其放入 array2 中。
然后我将整个 array1 放入数组类型的 vector 中。
我这样做是因为我将循环遍历下一行并将新行值放入相同的两个数组中,但我需要将旧选择的行保留在 vector 中,这些行的大小会随着时间的推移而增加。
我尝试了很多方法,其中之一我认为 vector 中有指针而不是数组的真实数据。
当我尝试获取旧的 vector 值时,我找到了最新的 vector
这是代码:
if(mysql_query(conn, "SELECT * FROM price_ttl limit 10"))
{
print_error (conn,"");
}
res = mysql_store_result(conn);
//this variables are used to store information from res meta data using these functions
totalrows = mysql_num_rows(res);
numfields = mysql_num_fields(res);
/*here we will take value of each column in each row as string
then we will put it in certain position in array of 2 arrays
this array reperesnt 1 row
each array is formed of "12-1"numfields-1 places */
const int maxrows_price_ttl = 2;
const int maxcolumns_price_ttl = 11;//the last cloumn for null value
char two_rows_values_eleven_fields_1strow[maxcolumns_price_ttl];
char two_rows_values_eleven_fields_2ndrow[maxcolumns_price_ttl];
//second we make the vector of multiple arrays for price_mtl table rows
//int maxrows_price_mtl_var ;
//const int maxcolumns_price_mtl = 11;
//we define vector "dynamic array" which is of the type array and call it variable_rows_values_eleven_fields_vector
//the array which represent the type of the vector is called single_row_values_eleven_fields_array
//char *single_row_values_eleven_fields_array;
//here we define the vector its type char* its name variable_rows_values_eleven_fields_vector
std::vector<std::string> variable_rows_values_eleven_fields_vector_string;
std::vector<char*>variable_rows_values_eleven_fields_vector_array;
//this is to make sure we are present in place where mysql_fetch_row will get the desired row "row1"
mysql_data_seek(res, 0);
int rownumber=1;
int columnnumber=0;
std::string row_string="";
//char *row_array[];
//now we want to loop through the result set
for (rownumberall=1; rownumberall < totalrows; rownumberall++)
{
row_string="";
//third we get the value of the current row from result set of current query
//row = mysql_fetch_row (res);//>>>>>>>>>>>>--1-->>>>>--3--
//std::cout <<*(&row )<<std::endl;
//fputc ('\n', stdout);
//printf("Press any key to continue . . . ");
//fputc ('\n', stdout);
//_getch();
for (rownumber=1; rownumber <= maxrows_price_ttl; rownumber++)
{
//third we get the value of the current row from result set of current query
row = mysql_fetch_row (res);//>>>>>>>>>>>>--1-->>>>>--3--
for (columnnumber=0; columnnumber < numfields; columnnumber++)
{
if (rownumber==2)
{
//here we put each coloumn value in its place in array of arrays"which is similar to structure of price table from which we r geting our rows"
//we use rownumber-1 because array 1st place is zero first row is 1 first column is 0
two_rows_values_eleven_fields_2ndrow[columnnumber]= *row[columnnumber] ; //array first elemnt is zero >>>>>>>>>>>>>>--2--a
//std::cout <<two_rows_values_eleven_fields[rownumber-1][columnnumber]<<std::endl;
//printf("Press any key to continue . hawww. . ");
//fputc ('\n', stdout);
//_getch();
}
//row_array[columnnumber]= row[columnnumber] ;
if (rownumber==1)
{
two_rows_values_eleven_fields_1strow[columnnumber]= *row[columnnumber] ;
std::cout <<row_string<<std::endl;
row_string=row_string+row[columnnumber]+"," ;
}
//row_string=row_string+two_rows_values_eleven_fields[0][columnnumber]+"," ;
//std::cout <<row_string<<std::endl;
//fputc ('\n', stdout);
//printf("Press any key to continue . . . ");
//fputc ('\n', stdout);
//_getch();
}
if (rownumber==1)//so that we enter single time in vector
{
row_string.erase(row_string.end()-1);
row_string="'"+row_string+"'" ;
variable_rows_values_eleven_fields_vector_string.push_back(row_string);//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>--2--b
variable_rows_values_eleven_fields_vector_array.push_back(two_rows_values_eleven_fields_1strow);//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>--2--b
// std::cout <<row_string<<std::endl;
// std::cout <<variable_rows_values_eleven_fields_vector_string.back()<<std::endl;
// std::cout <<variable_rows_values_eleven_fields_vector_array.back()<<std::endl;
// std::cout <<variable_rows_values_eleven_fields_vector_array.back()[0]<<std::endl;
// std::cout <<variable_rows_values_eleven_fields_vector_array.back()[1]<<std::endl;
// std::cout <<variable_rows_values_eleven_fields_vector_array.back()[2]<<std::endl;
// fputc ('\n', stdout);
// printf("Press any key to continue . . . ");
// fputc ('\n', stdout);
// _getch();
}
}
//compare their difference for having same sign
//first we need to convert from string to double
//first we make varibles
double price_ttl_pricediff_row_1_double=0;
double price_ttl_pricediff_row_2_double=0;
//here we make string variable for string value of price_ttl pricediff which is extruded from row1 column 6 row 2 column6
std::string str_price_ttl_pricediff_row_1="";
std::string str_price_ttl_pricediff_row_2="";
//this is char pointer required by function strtod to point to begining of string after end of double part of the string to be converted
char *strtodpend;
const char *str_to_char_pointer2;
//here we give variables of price_ttl pricediff its values
str_to_char_pointer2=&two_rows_values_eleven_fields_1strow[5];
price_ttl_pricediff_row_1_double = strtod(str_to_char_pointer2,&strtodpend);
str_to_char_pointer2=&two_rows_values_eleven_fields_2ndrow[5];
price_ttl_pricediff_row_2_double = strtod(str_to_char_pointer2,&strtodpend);
//here this is how to get the sign of each of the two values
//sign(price_ttl_pricediff_row_1_double);
//sign(price_ttl_pricediff_row_2_double);
//this is to show the values of pricediff of price_ttl for test
std::cout <<two_rows_values_eleven_fields_1strow[5]<<std::endl;
std::cout <<two_rows_values_eleven_fields_2ndrow[5]<<std::endl;
std::cout <<str_to_char_pointer2 <<std::endl;
std::cout <<price_ttl_pricediff_row_2_double <<std::endl;
std::cout <<sign(price_ttl_pricediff_row_1_double)<<std::endl;
std::cout <<sign(price_ttl_pricediff_row_2_double) <<std::endl;
std::cout <<price_ttl_pricediff_row_1_double <<std::endl;
std::cout <<price_ttl_pricediff_row_2_double <<std::endl;
//std::cout <<str_price_ttl_pricediff <<std::endl;
//std::cout <<str_price_ttl_timediff <<std::endl;
//std::cout <<insert_into <<std::endl;
//fputc ('\n', stdout);
printf("Press any key to continue . . . ");
fputc ('\n', stdout);
_getch();
//if signs are not the same
if (sign(price_ttl_pricediff_row_1_double)!=sign(price_ttl_pricediff_row_2_double))
{
printf("Press any key to continue . . . ");
fputc ('\n', stdout);
_getch();
//here we calculate values of the row of mtl table from contents of vector
//first we know contents of vector
int vector_size =variable_rows_values_eleven_fields_vector_array.size();//size represents number of rows of price_ttl which will form one row for price_mtl
//we get all information from first and last element in vector
char *first_vector_array_row=variable_rows_values_eleven_fields_vector_array[0];
char *last_vector_array_row=variable_rows_values_eleven_fields_vector_array[(vector_size-1)];
std::cout <<variable_rows_values_eleven_fields_vector_array[0] <<std::endl;
std::cout <<variable_rows_values_eleven_fields_vector_array[1] <<std::endl;
std::cout <<variable_rows_values_eleven_fields_vector_array[2] <<std::endl;
std::cout <<*variable_rows_values_eleven_fields_vector_array[(vector_size-1)] <<std::endl;
std::cout <<variable_rows_values_eleven_fields_vector_string.back()<<std::endl;
std::cout <<variable_rows_values_eleven_fields_vector_string.size()<<std::endl;
std::cout <<vector_size<<std::endl;
variable_rows_values_eleven_fields_vector_string.push_back(row_string);
std::cout <<variable_rows_values_eleven_fields_vector_array[0] [0]<<std::endl;
std::cout <<variable_rows_values_eleven_fields_vector_array[0] [1]<<std::endl;
std::cout <<variable_rows_values_eleven_fields_vector_array[0] [2]<<std::endl;
std::cout <<variable_rows_values_eleven_fields_vector_array[0] [3]<<std::endl;
std::cout <<vector_size <<std::endl;
std::cout <<variable_rows_values_eleven_fields_vector_array[(vector_size-1)][0] <<std::endl;
std::cout <<variable_rows_values_eleven_fields_vector_array[(vector_size-1)] [1]<<std::endl;
std::cout <<variable_rows_values_eleven_fields_vector_array[(vector_size-1)] [2]<<std::endl;
std::cout <<variable_rows_values_eleven_fields_vector_array[(vector_size-1)] [3]<<std::endl;
std::cout <<vector_size <<std::endl;
//fputc ('\n', stdout);
printf("Press any key to continue . . . ");
fputc ('\n', stdout);
_getch();
最佳答案
简而言之,我想制作二维 vector ,它通过 vector [][]获取元素,然后我想使用 vector [][]从 vector 中重新获取元素以获取单个元素或 vector []以获取整行数组是否可以???现在我只需将行作为字符串输入 vector ,然后使用字符串函数通过分隔符检索每个元素如果有人有其他办法我在等
关于c++ - 包含从 mysql row[x] 构建的固定长度数组的 vector ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37435027/
我正在尝试创建一个包含 int[][] 项的数组 即 int version0Indexes[][4] = { {1,2,3,4}, {5,6,7,8} }; int version1Indexes[
我有一个整数数组: private int array[]; 如果我还有一个名为 add 的方法,那么以下有什么区别: public void add(int value) { array[va
当您尝试在 JavaScript 中将一个数组添加到另一个数组时,它会将其转换为一个字符串。通常,当以另一种语言执行此操作时,列表会合并。 JavaScript [1, 2] + [3, 4] = "
根据我正在阅读的教程,如果您想创建一个包含 5 列和 3 行的表格来表示这样的数据... 45 4 34 99 56 3 23 99 43 2 1 1 0 43 67 ...它说你可以使用下
我通常使用 python 编写脚本/程序,但最近开始使用 JavaScript 进行编程,并且在使用数组时遇到了一些问题。 在 python 中,当我创建一个数组并使用 for x in y 时,我得
我有一个这样的数组: temp = [ 'data1', ['data1_a','data1_b'], ['data2_a','data2_b','data2_c'] ]; // 我想使用 toStr
rent_property (table name) id fullName propertyName 1 A House Name1 2 B
这个问题在这里已经有了答案: 关闭13年前。 Possible Duplicate: In C arrays why is this true? a[5] == 5[a] array[index] 和
使用 Excel 2013。经过多年的寻找和适应,我的第一篇文章。 我正在尝试将当前 App 用户(即“John Smith”)与他的电子邮件地址“jsmith@work.com”进行匹配。 使用两个
当仅在一个边距上操作时,apply 似乎不会重新组装 3D 数组。考虑: arr 1),但对我来说仍然很奇怪,如果一个函数返回一个具有尺寸的对象,那么它们基本上会被忽略。 最佳答案 这是一个不太理
我有一个包含 GPS 坐标的 MySQL 数据库。这是我检索坐标的部分 PHP 代码; $sql = "SELECT lat, lon FROM gps_data"; $stmt=$db->query
我需要找到一种方法来执行这个操作,我有一个形状数组 [批量大小, 150, 1] 代表 batch_size 整数序列,每个序列有 150 个元素长,但在每个序列中都有很多添加的零,以使所有序列具有相
我必须通过 url 中的 json 获取文本。 层次结构如下: 对象>数组>对象>数组>对象。 我想用这段代码获取文本。但是我收到错误 :org.json.JSONException: No valu
enter code here- (void)viewDidLoad { NSMutableArray *imageViewArray= [[NSMutableArray alloc] init];
知道如何对二维字符串数组执行修剪操作,例如使用 Java 流 API 进行 3x3 并将其收集回相同维度的 3x3 数组? 重点是避免使用显式的 for 循环。 当前的解决方案只是简单地执行一个 fo
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我有来自 ASP.NET Web 服务的以下 XML 输出: 1710 1711 1712 1713
如果我有一个对象todo作为您状态的一部分,并且该对象包含数组列表,则列表内部有对象,在这些对象内部还有另一个数组listItems。如何更新数组 listItems 中 id 为“poi098”的对
我想将最大长度为 8 的 bool 数组打包成一个字节,通过网络发送它,然后将其解压回 bool 数组。已经在这里尝试了一些解决方案,但没有用。我正在使用单声道。 我制作了 BitArray,然后尝试
我们的数据库中有这个字段指示一周中的每一天的真/假标志,如下所示:'1111110' 我需要将此值转换为 boolean 数组。 为此,我编写了以下代码: char[] freqs = weekday
我是一名优秀的程序员,十分优秀!