| |
|
|
- Page 1 - |
|
H.Brill | would have been a question : is The Einbettung of variables too in Firebird possible ?
db("fbSQLExec", hdb&, "CREATE TABLE PREISE (WG NUMERIC(2,0), NUM NUMERIC(4,0), ARTIKEL CHAR(50), EINHEIT CHAR(4), PREIS CHAR(12))", 1)
WhileLoop 0, GetCount(0) - 1
WG = SubStr$(GetString$(0, &LOOP), 1, "|")
NUM = SubStr$(GetString$(0, &LOOP), 2, "|")
ARTIKEL = SubStr$(GetString$(0, &LOOP), 3, "|")
EINHEIT = SubStr$(GetString$(0, &LOOP), 4, "|")
PREIS = SubStr$(GetString$(0, &LOOP), 5, "|")
db("fbSQLExec", hdb&, "INSERT INTO PREISE (WG,NUM,ARTIKEL,EINHEIT,PREIS) VALUES (:WG,:NUM,':ARTIKEL ',':EINHEIT ',':PREIS ')" , 1)
EndWhile
In obiger Loop would like I gladly a Textdatei with | as Split-Trenner, The I into interne Listboxliste read have, in a Firebird DB write.
is the with Firebird at all possible, or. or is the Einbettung only in SQL statthaft ?
or How could one it too yet make ? |
|
|
| Benutze XPROFAN X3 + FREEPROFAN Wir sind die XProfaner. Sie werden von uns assimiliert. Widerstand ist zwecklos! Wir werden alle ihre Funktionen und Algorithmen den unseren hinzufügen.
Was die Borg können, können wir schon lange. | 12/30/15 ▲ |
|
|
|
|
« this Posting watts as Solution marked. » |
|
H.Brill | so, habs yourself rausgefunden. The embedded variables weg only, as they as variables with Postfix ($,!,%,& etc.) declared get. Since I in the meantime gladly too with vorangestelltem type deklariere, is me the neither noticed.
would be Perhaps one Verbesserungsvorschlag, if Roland too these variables with einbezieht. |
|
|
| Benutze XPROFAN X3 + FREEPROFAN Wir sind die XProfaner. Sie werden von uns assimiliert. Widerstand ist zwecklos! Wir werden alle ihre Funktionen und Algorithmen den unseren hinzufügen.
Was die Borg können, können wir schon lange. | 12/30/15 ▲ |
|
|
|
|
|
Jörg Sellmeyer | I can not really answer, I me of these DB-Kram not auskenne. If, then would I it so make:
Declare txt1$,txt2$,txt3$
txt1$ = "..."
txt2$ = "..."
txt3$ = "..."
db("fbSQLExec", hdb&, "INSERT INTO PREISE (" + txt1$ + "," + txt2$ + "," + txt3$ + ") VALUES (:WG,:NUM,':ARTIKEL ',':EINHEIT ',':PREIS ')" , 1)
with whom back indicated the variables with want too yet so take action. |
|
|
| |
|
|
|
H.Brill | so, habs yourself rausgefunden. The embedded variables weg only, as they as variables with Postfix ($,!,%,& etc.) declared get. Since I in the meantime gladly too with vorangestelltem type deklariere, is me the neither noticed.
would be Perhaps one Verbesserungsvorschlag, if Roland too these variables with einbezieht. |
|
|
| Benutze XPROFAN X3 + FREEPROFAN Wir sind die XProfaner. Sie werden von uns assimiliert. Widerstand ist zwecklos! Wir werden alle ihre Funktionen und Algorithmen den unseren hinzufügen.
Was die Borg können, können wir schon lange. | 12/30/15 ▲ |
|
|
|
|
| @Jörg: andersum, insert into prices (slot,slot,...) values (worth,worth,...) |
|
|
| |
|
|
|
Jörg Sellmeyer | I say Yes, I me lest auskenne - right I had nevertheless |
|
|
| |
|
|
|
| was me already clear, wished only because sichs well remember can... |
|
|
| |
|
|
|
Jörg Sellmeyer | H.Brill (30.12.2015)
so, habs yourself rausgefunden. The embedded variables weg only, as they as variables with Postfix ($,!,%,& etc.) declared get. Since I in the meantime gladly too with vorangestelltem type deklariere, is me the neither noticed.
would be Perhaps one Verbesserungsvorschlag, if Roland too these variables with einbezieht.
That the Typendeklaration becomes probably too klappen. You must The variables then but too correctly. into String insert. so How You it supra made have, stay tappt im dunkeln Yes in the string as Literal and not as Variable. |
|
|
| |
|
|
|
H.Brill | Nö, this is already correctly. so. The XProfanhilfe says with db("SQLExec",....) :
db("SQLExec", "INSERT INTO ueb VALUES (:number%,:item$,:Price!)",0)
the has Roland mere already written, long before it The Typdeklaration with z.B.
given. The colon to the Variable displays, that it itself in the commands (String) for db("SQLExec",..) circa a Variable deals and accordingly supplant becomes.
so, How Roland it at new Update of Freeprofan with the Strings generally installed has : [...]
there becomes in the Stringliteral a variable anhand of \:variable recognized.
How already already said, has Roland with SQL the for the new type-Deklaration not yet berücksichtigt. |
|
|
| Benutze XPROFAN X3 + FREEPROFAN Wir sind die XProfaner. Sie werden von uns assimiliert. Widerstand ist zwecklos! Wir werden alle ihre Funktionen und Algorithmen den unseren hinzufügen.
Was die Borg können, können wir schon lange. | 12/31/15 ▲ |
|
|
|