- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
因此,我正在尝试编写一个程序来生成 SQL 插入命令语句并将它们写入 .txt
文件。对于开始,我只写了一些代码,这些代码只会写一个插入命令的开始:表名和列名。
#include <iostream>
#include <iomanip>
#include <stack>
#include <queue>
#include <fstream>'
using namespace std;
ifstream wrf;
int main()
{
queue<string>row1;
queue<string>row2;
queue<string>values;
// queue<void>storeValues;
string table;
int columnVal;
int valuesVal;
string insertQ = "insert into";
string valQ = "values";
string columnName;
cout << "Insert table name: ";
cin >> table;
cout << "Number of columns: ";
cin >> columnVal;
int temp = columnVal;
cout <<"------------------------------\nStulpeliai:\n";
//------------------------------
while(temp)
{
cin >> columnName;
row1.push(columnName);
temp--;
}
//int temp2 = valuesVal;
wrf.open ("DB.txt");
cout << "\n------------------------------\nTEST\n";
cout << insertQ << table << "\n\t(";
wrf >> insertQ >> table >> "\n\t(";
while(row1.size() != 1)
{
cout << row1.front() << ", ";
wrf >> row1.front() >> ", ";
row2.push(row1.front());
row1.pop();
}
cout << row1.front() <<") ";
wrf >> row1.front() <<") ";
row2.push(row1.front());
row1.pop();
wrf.close();
return 0;
}
出于测试原因,我尝试编写 ifstream
语句来测试它如何将其写入 .txt
文件,但我遇到了不匹配错误...
有什么想法吗?
附言我只是出于学习原因使用队列。我希望问题足够全局化。
最佳答案
如果你想写入wfs
,你的代码应该修改为:
ofstream wrf;
// in the definition
// .....
//...
// when outputting to the file
wrf << insertQ << table << "\n\t(";
while(row1.size() != 1)
{
cout << row1.front() << ", ";
wrf << row1.front() << ", ";
row2.push(row1.front());
row1.pop();
}
cout << row1.front() <<") ";
wrf << row1.front() <<") ";
row2.push(row1.front());
row1.pop();
wrf.close();
return 0;
}
关于c++ - fstream 错误 : no match for 'operator<<' in 'wrf << "insert into"'|,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32627721/
我尝试将兰伯特共形坐标转换为纬度/经度 (WGS84),并且我使用了 wgrib2,但结果有偏差。 命令: wgrib2“mypath”-match“10m....”-new_grid_winds g
我需要使用 python 的 pvlib 包 ( https://pvlib-python.readthedocs.io/en/stable/ ) 计算阵列平面 (POA) 辐照度。为此,我想使用 W
我想绘制一个类似于 WRF 域的图形,如 域框架内只有矩形框,没有任何颜色。但是,我最接近的是 使用以下代码:- from mpl_toolkits.basemap import Basemap im
因此,我正在尝试编写一个程序来生成 SQL 插入命令语句并将它们写入 .txt 文件。对于开始,我只写了一些代码,这些代码只会写一个插入命令的开始:表名和列名。 #include #include
我是一名优秀的程序员,十分优秀!