poprawka: get_value() z postgresqlconnector zamienione na get_value_from_result()
w klasie bazowej mamy virtualne get_value() z innymi parametrami (ostrzeżenie kompilatora) git-svn-id: svn://ttmath.org/publicrep/morm/trunk@1087 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
@@ -204,7 +204,7 @@ const char * PostgreSQLConnector::query_last_sequence(const wchar_t * sequence_t
|
|||||||
{
|
{
|
||||||
if( last_select_size() == 1 )
|
if( last_select_size() == 1 )
|
||||||
{
|
{
|
||||||
return get_value(0, 0);
|
return get_value_from_result(0, 0);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -392,7 +392,7 @@ const char * PostgreSQLConnector::get_field_string_value(const wchar_t * column_
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
const char * PostgreSQLConnector::get_value(int row, int col)
|
const char * PostgreSQLConnector::get_value_from_result(int row, int col)
|
||||||
{
|
{
|
||||||
const char * value_str = nullptr;
|
const char * value_str = nullptr;
|
||||||
|
|
||||||
|
@@ -95,7 +95,7 @@ public:
|
|||||||
* can return a null pointer if there is no such an item in the last result
|
* can return a null pointer if there is no such an item in the last result
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
const char * get_value(int row, int col);
|
const char * get_value_from_result(int row, int col);
|
||||||
int get_value_length(int row, int col);
|
int get_value_length(int row, int col);
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user