Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pikelang
pike
Commits
557af298
Commit
557af298
authored
26 years ago
by
Henrik (Grubba) Grubbström
Browse files
Options
Downloads
Patches
Plain Diff
Improved BLOB handling copied from Pike 0.6.
Rev: src/modules/Odbc/odbc_result.c:1.9
parent
b13834ec
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/modules/Odbc/odbc_result.c
+95
-13
95 additions, 13 deletions
src/modules/Odbc/odbc_result.c
with
95 additions
and
13 deletions
src/modules/Odbc/odbc_result.c
+
95
−
13
View file @
557af298
/*
/*
* $Id: odbc_result.c,v 1.
8
1998/05/31 1
7
:1
7:13
grubba Exp $
* $Id: odbc_result.c,v 1.
9
1998/05/31 1
8
:1
5:21
grubba Exp $
*
*
* Pike interface to ODBC compliant databases
* Pike interface to ODBC compliant databases
*
*
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
#ifdef HAVE_ODBC
#ifdef HAVE_ODBC
#include
"global.h"
#include
"global.h"
RCSID
(
"$Id: odbc_result.c,v 1.
8
1998/05/31 1
7
:1
7:13
grubba Exp $"
);
RCSID
(
"$Id: odbc_result.c,v 1.
9
1998/05/31 1
8
:1
5:21
grubba Exp $"
);
#include
"interpret.h"
#include
"interpret.h"
#include
"object.h"
#include
"object.h"
...
@@ -29,6 +29,7 @@ RCSID("$Id: odbc_result.c,v 1.8 1998/05/31 17:17:13 grubba Exp $");
...
@@ -29,6 +29,7 @@ RCSID("$Id: odbc_result.c,v 1.8 1998/05/31 17:17:13 grubba Exp $");
#include
"multiset.h"
#include
"multiset.h"
#include
"program.h"
#include
"program.h"
#include
"array.h"
#include
"array.h"
#include
"operators.h"
#include
"builtin_functions.h"
#include
"builtin_functions.h"
#include
"pike_memory.h"
#include
"pike_memory.h"
#include
"pike_macros.h"
#include
"pike_macros.h"
...
@@ -38,6 +39,18 @@ RCSID("$Id: odbc_result.c,v 1.8 1998/05/31 17:17:13 grubba Exp $");
...
@@ -38,6 +39,18 @@ RCSID("$Id: odbc_result.c,v 1.8 1998/05/31 17:17:13 grubba Exp $");
/* #define ODBC_DEBUG */
/* #define ODBC_DEBUG */
/*
* Contants
*/
/* Buffer size used when retrieving BLOBs
*
* Allow it to be specified from the command line.
*/
#ifndef BLOB_BUFSIZ
#define BLOB_BUFSIZ 1024
#endif
/* !BLOB_BUFSIZ */
/*
/*
* Globals
* Globals
*/
*/
...
@@ -179,17 +192,23 @@ static void odbc_fix_fields(void)
...
@@ -179,17 +192,23 @@ static void odbc_fix_fields(void)
break
;
break
;
case
SQL_LONGVARBINARY
:
case
SQL_LONGVARBINARY
:
push_text
(
"long blob"
);
push_text
(
"long blob"
);
odbc_field_sizes
[
i
]
=
0
;
#if 0
if (odbc_field_sizes[i] > 0x100000) {
if (odbc_field_sizes[i] > 0x100000) {
/* Don't allocate more than 1M */
/* Don't allocate more than 1M */
odbc_field_sizes[i] = 0x100000;
odbc_field_sizes[i] = 0x100000;
}
}
#endif /* 0 */
break
;
break
;
case
SQL_LONGVARCHAR
:
case
SQL_LONGVARCHAR
:
push_text
(
"var string"
);
push_text
(
"var string"
);
odbc_field_sizes
[
i
]
=
0
;
#if 0
if (odbc_field_sizes[i] > 0x100000) {
if (odbc_field_sizes[i] > 0x100000) {
/* Don't allocate more than 1M */
/* Don't allocate more than 1M */
odbc_field_sizes[i] = 0x100000;
odbc_field_sizes[i] = 0x100000;
}
}
#endif /* 0 */
break
;
break
;
case
SQL_REAL
:
case
SQL_REAL
:
push_text
(
"float"
);
push_text
(
"float"
);
...
@@ -203,13 +222,17 @@ static void odbc_fix_fields(void)
...
@@ -203,13 +222,17 @@ static void odbc_fix_fields(void)
break
;
break
;
case
SQL_VARCHAR
:
case
SQL_VARCHAR
:
push_text
(
"var string"
);
push_text
(
"var string"
);
odbc_field_sizes
[
i
]
=
0
;
#if 0
if (odbc_field_sizes[i] > 0x100000) {
if (odbc_field_sizes[i] > 0x100000) {
/* Don't allocate more than 1M */
/* Don't allocate more than 1M */
odbc_field_sizes[i] = 0x100000;
odbc_field_sizes[i] = 0x100000;
}
}
#endif /* 0 */
break
;
break
;
default:
default:
push_text
(
"unknown"
);
push_text
(
"unknown"
);
odbc_field_sizes
[
i
]
=
0
;
break
;
break
;
}
}
push_text
(
"length"
);
push_int
(
precision
);
push_text
(
"length"
);
push_int
(
precision
);
...
@@ -229,9 +252,11 @@ static void odbc_fix_fields(void)
...
@@ -229,9 +252,11 @@ static void odbc_fix_fields(void)
f_aggregate_mapping
(
5
*
2
);
f_aggregate_mapping
(
5
*
2
);
/* Align to longlong-word size */
if
(
odbc_field_sizes
[
i
])
{
odbc_field_sizes
[
i
]
+=
7
;
/* Align to longlong-word size */
odbc_field_sizes
[
i
]
&=
~
7
;
odbc_field_sizes
[
i
]
+=
7
;
odbc_field_sizes
[
i
]
&=
~
7
;
}
membuf_size
+=
odbc_field_sizes
[
i
];
membuf_size
+=
odbc_field_sizes
[
i
];
}
}
...
@@ -250,14 +275,21 @@ static void odbc_fix_fields(void)
...
@@ -250,14 +275,21 @@ static void odbc_fix_fields(void)
* Now it's time to bind the columns
* Now it's time to bind the columns
*/
*/
for
(
i
=
0
;
i
<
PIKE_ODBC_RES
->
num_fields
;
i
++
)
{
for
(
i
=
0
;
i
<
PIKE_ODBC_RES
->
num_fields
;
i
++
)
{
PIKE_ODBC_RES
->
field_info
[
i
].
buf
=
membuf
;
if
((
PIKE_ODBC_RES
->
field_info
[
i
].
size
=
odbc_field_sizes
[
i
]))
{
PIKE_ODBC_RES
->
field_info
[
i
].
size
=
odbc_field_sizes
[
i
]
;
PIKE_ODBC_RES
->
field_info
[
i
].
buf
=
membuf
;
odbc_check_error
(
"odbc_fix_fields"
,
"Couldn't bind string field"
,
odbc_check_error
(
"odbc_fix_fields"
,
"Couldn't bind field"
,
SQLBindCol
(
PIKE_ODBC_RES
->
hstmt
,
i
+
1
,
SQLBindCol
(
PIKE_ODBC_RES
->
hstmt
,
i
+
1
,
SQL_C_CHAR
,
membuf
,
odbc_field_sizes
[
i
],
SQL_C_CHAR
,
membuf
,
odbc_field_sizes
[
i
],
&
PIKE_ODBC_RES
->
field_info
[
i
].
len
),
NULL
);
&
PIKE_ODBC_RES
->
field_info
[
i
].
len
),
NULL
);
membuf
+=
odbc_field_sizes
[
i
];
membuf
+=
odbc_field_sizes
[
i
];
}
else
{
PIKE_ODBC_RES
->
field_info
[
i
].
buf
=
NULL
;
#ifdef ODBC_DEBUG
fprintf
(
stderr
,
"ODBC:odbc_fix_fields(): Column field %d is a BLOB
\n
"
,
i
+
1
);
#endif
/* ODBC_DEBUG */
}
}
}
}
}
...
@@ -356,7 +388,57 @@ static void f_fetch_row(INT32 args)
...
@@ -356,7 +388,57 @@ static void f_fetch_row(INT32 args)
code
,
NULL
);
code
,
NULL
);
for
(
i
=
0
;
i
<
PIKE_ODBC_RES
->
num_fields
;
i
++
)
{
for
(
i
=
0
;
i
<
PIKE_ODBC_RES
->
num_fields
;
i
++
)
{
if
(
PIKE_ODBC_RES
->
field_info
[
i
].
len
!=
SQL_NULL_DATA
)
{
if
(
!
PIKE_ODBC_RES
->
field_info
[
i
].
size
)
{
/* BLOB */
int
num_strings
=
0
;
char
buf
[
BLOB_BUFSIZ
+
1
];
SDWORD
len
=
0
;
while
(
1
)
{
code
=
SQLGetData
(
PIKE_ODBC_RES
->
hstmt
,
i
+
1
,
SQL_C_BINARY
,
buf
,
BLOB_BUFSIZ
,
&
len
);
if
(
code
==
SQL_NO_DATA_FOUND
)
{
#ifdef ODBC_DEBUG
fprintf
(
stderr
,
"ODBC:fetch_row(): NO DATA
\n
"
);
#endif
/* ODBC_DEBUG */
if
(
!
num_strings
)
{
num_strings
++
;
push_constant_text
(
""
);
}
break
;
}
odbc_check_error
(
"odbc->fetch_row"
,
"SQLGetData() failed"
,
code
,
NULL
);
if
(
len
==
SQL_NULL_DATA
)
{
#ifdef ODBC_DEBUG
fprintf
(
stderr
,
"ODBC:fetch_row(): NULL
\n
"
);
#endif
/* ODBC_DEBUG */
if
(
!
num_strings
)
{
/* NULL */
push_int
(
0
);
}
break
;
}
else
{
num_strings
++
;
#ifdef ODBC_DEBUG
fprintf
(
stderr
,
"[%d] "
,
num_strings
);
#endif
/* ODBC_DEBUG */
if
(
len
<
BLOB_BUFSIZ
)
{
push_string
(
make_shared_binary_string
(
buf
,
len
));
break
;
}
else
{
push_string
(
make_shared_binary_string
(
buf
,
BLOB_BUFSIZ
));
}
}
}
if
(
num_strings
>
1
)
{
#ifdef ODBC_DEBUG
fprintf
(
stderr
,
"ODBC:fetch_row(): Joining %d strings
\n
"
,
num_strings
);
#endif
/* ODBC_DEBUG */
f_add
(
num_strings
);
}
}
else
if
(
PIKE_ODBC_RES
->
field_info
[
i
].
len
!=
SQL_NULL_DATA
)
{
push_string
(
make_shared_binary_string
(
PIKE_ODBC_RES
->
field_info
[
i
].
buf
,
push_string
(
make_shared_binary_string
(
PIKE_ODBC_RES
->
field_info
[
i
].
buf
,
PIKE_ODBC_RES
->
field_info
[
i
].
len
));
PIKE_ODBC_RES
->
field_info
[
i
].
len
));
}
else
{
}
else
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment