I got your point.
_Flaviu
Posts
-
Migrate structure and data from SQL Server to SQLite -
Migrate structure and data from SQL Server to SQLiteI have succeeded to migrate a table from SQL Server by importing it the table to Excel, and from Excel sheet to SQLite using Python. The relations between tables I guess I should do it manually.
-
Migrate structure and data from SQL Server to SQLiteNo, that's not true. For instance, I have installed a net framework for a C# application, but still doesn't run, so, what can I do? To find out why that application is not working?
-
Migrate structure and data from SQL Server to SQLiteI know that tools, they simply don't run on my machine. They are C# apps and probably needs some net framework to install. But instead of digging to see why they are not run, I am concentrating to a reliable tool/solution (which I didn't find yet).
-
Migrate structure and data from SQL Server to SQLiteIs there any tool/solution to export the tables and then data from SQL Server to SQLite?
-
ORDER BY in UNIONYes, that's worked:
SELECT a.id, a.name FROM my_table a WHERE a.id = 10416
UNION
SELECT S.id, S.name FROM
(SELECT b.id, b.name FROM b.my_table b WHERE b.parent_id = 10416) AS Sbut soon as I put ORDER BY:
SELECT a.id, a.name FROM my_table a WHERE a.id = 10416
UNION
SELECT S.id, S.name FROM
(SELECT b.id, b.name FROM b.my_table b WHERE b.parent_id = 10416 ORDER BY 2) AS SError:
The ORDER BY clause is invalid in views, inline functions, derived tables, subqueries, and common table expressions, unless TOP, OFFSET or FOR XML is also specified.
-
ORDER BY in UNIONI have tried:
SELECT a.id, a.name FROM my_table a WHERE a.id = 10416
UNION
SELECT b.id, b.name FROM
(SELECT b.id, b.name FROM b.my_table b WHERE b.parent_id = 10416)But it doesn't like it:
SQL
Executing SQL directly; no cursor.
Incorrect syntax near ')'.
Statement(s) could not be prepared.Did I understand correctly your thought?
-
ORDER BY in UNIONI have tried:
SELECT a.id, a.name FROM my_table a WHERE a.id = 10416
SELECT b.id, b.name FROM
(SELECT b.id, b.name FROM b.my_table b WHERE b.parent_id = 10416)But it doesn't like it:
Executing SQL directly; no cursor.
Incorrect syntax near ')'.
Statement(s) could not be prepared.Did I understand correctly your thought?
-
ORDER BY in UNIONSQL Server (from Microsoft)
-
ORDER BY in UNIONIs there possible to get an
UNION
in such a way that second part ofUNION
to be ordered ? I have:SELECT column_name(s) FROM table1
UNION
SELECT column_name(s) FROM table2 ORDER BY 3The select from
table1
will always get one row, and I need to order just records that come fromtable2
, which could be more than one row ... it is possible to achieve that by SQL ? P.S. I am using SQL Server. -
Com Automation latest library for working with ms excel.If you need excel in a C++ app, you can consider using this library: GitHub - troldal/OpenXLSX: A C++ library for reading, writing, creating and modifying Microsoft Excel® (.xlsx) files.[^] Less overhead than COM Automation !
-
Center text vertically with relative heightI have read that post, I didn't noticed any solution with relative height, I've read not very carefully though.
-
Center text vertically with relative heightExcellent ! It works. Thanks!
-
Center text vertically with relative heightI need to center a text vertically (and horizontally) along the whole page, and for that I need to setup the height property as relative, respectively whole page. I have tried:
body {
font-family: Arial;
color: #f9f9ff;
background-color:#293138;
}.center-text {
height:100%;
display: flex;
flex-direction: column;
justify-content: center;
}Test
How can I achieve this ?
-
Three divs inside a divYes, its working now, thank you a lot !!
-
Three divs inside a divThank you a lot Jeremy. It works for this test, however, I don't think I would go with this solution, because the rest of my html pages are not made it with you approach, and I guess will be difficult to control that pattern several times:
Tuesday 2023-03-15  text text text text text text text text text text text text text text text text text text text text
You see, the text from the first box should be ceneterd aligned, as long the last box (the right one) should have left - top text centered.
-
Three divs inside a divI am struggle (I know alost nothing about html) to insert three div's inside a div, something like this: Untitled hosted at ImgBB — ImgBB[^] I have succeeeded to put only the fist div (that one with date), but the next ones (image + texts) I cannot (yet). How can I add the next two (image + mult line texts) ? Here is y trial (didn't work correctly):
Tuesday 2023-03-15  text text text text text text text text text text text text text text text text text text text text
Can you guide me to solve this task ?
-
Center text vertically inside a divIt works now, thanks a lot !
-
Center text vertically inside a divThank you Richard a lot. As you see, the vertical alignment of the second div is not correct, and I don't know why, I am not a web developer at all.
-
Center text vertically inside a divYes, I know, but the trick is that the second div has no vertical correct alignment, and I don't realise why:
Horizontal and Vertical alignment .container { height: 200px; width: 400px; border: 2px dashed #4b2869; display: table-cell; text-align: center; vertical-align: middle; position: relative; } .container1 { height: 200px; width: 400px; border: 2px dashed #4b2869; display: table-cell; text-align: center; vertical-align: bottom; position: absolute; }
container
container1