pick

How do I find the column listing in UniVerse with RetrieVe or SQL?

自作多情 提交于 2019-12-31 03:19:09
问题 I've got an issue where a table (file) is set up to return column foo on LIST table and SELECT * FROM table . I need to know the other possible columns in table . I'm pretty sure this was achieved by setting @ (behavoir definition of unqualified LIST ), and @select (behavoir definition of * with very SELECT ) but I don't know how to get the full list of columns. How do I read the table schema in uvsh and query for the physical table columns? Running LIST.ITEM on the table shows me a list of

UniCommand differences for UniData

北战南征 提交于 2019-12-14 02:32:58
问题 I'm new to the world of UniObjects as I've been in .NET land since it debuted. After building a simple app to return the select list of a UniCommand statement I noticed that there are some major differences in how UniData and how UniObjects parses the UniCommand statments. From what I've found it looks like it is differences in the flavors of PICK used. What I'm asking is for other UniObjects programmers (UniVerse or UniData) that know of the differences or know of commands that can be

Prevent a checkout in Git

你说的曾经没有我的故事 提交于 2019-12-13 13:33:41
问题 I'm currently looking into managing source code from an OpenInsight application using Git. Because OI code is stored in a database table there is a certain amount of manual work to export the source to text and visa-versa. So far I have managed to automate a lot of this work using Git hooks, but the lack of a 'pre-checkout' hook has given me a problem.. When a user switches branches I have a post-checkout hook to diff the old and new branches and store a list of the changed procedures. When